   /* Base styles */
    :root {
        --primary-color: #2e7d32;
        --primary-dark: #1b5e20;
        --primary-light: #4caf50;
        --accent-color: #ffa726;
        --text-light: #f9f9f9;
        --text-dark: #333;
        --gray-light: #f5f5f5;
        --gray: #e0e0e0;
        --shadow: 0 4px 6px rgba(0,0,0,0.1);
        --shadow-large: 0 8px 16px rgba(0,0,0,0.1);
        --radius: 8px;
        --radius-large: 16px;
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body { 
        font-family: 'Poppins', sans-serif; 
        margin: 0; 
        padding: 0; 
        background: var(--gray-light);
        color: var(--text-dark);
        line-height: 1.6;
    }
    
    h1, h2, h3, h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--primary-dark);
    }
    
    a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }
    
    a:hover {
        color: var(--primary-light);
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Container */
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    /* Navigation */
    nav {
        background: var(--primary-dark);
        color: white;
        padding: 1em;
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: var(--shadow);
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
    }
    
    .logo-container img {
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
    }
    
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        padding: 0.5rem 0;
        position: relative;
    }
    
    .nav-links a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--accent-color);
        transition: var(--transition);
    }
    
    .nav-links a:hover:after {
        width: 100%;
    }
    
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    /* Header */
	
.header-container {
  display: flex;
  align-items: center;
  justify-content: center; /* o space-between si quieres que se separen más */
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* para móviles */
}

<!-- .logo { -->
  <!-- width: 200px; -->
  <!-- height: auto; -->
  <!-- border-radius: 50%; -->
  <!-- margin-right: 20px; -->
<!-- } -->

<!-- .header-texto h1 { -->
  <!-- margin: 0; -->
  <!-- font-size: 24px; -->
  <!-- color: #333; -->
<!-- } -->

<!-- .header-subtitle { -->
  <!-- margin: 5px 0 0; -->
  <!-- font-size: 16px; -->
  <!-- color: #666; -->
<!-- } -->
	
    header {
        background: linear-gradient(to bottom right, var(--primary-color), var(--primary-light));
        color: white;
        padding: 1em;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 70px; /* Espacio para el logo circular */
    }
    
    header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('assets/images/paw-pattern.png');
        opacity: 0.1;
    }
    
    <!-- header .container { -->
        <!-- position: relative; -->
        <!-- z-index: 2; -->
    <!-- } -->
    
    .big-logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: -80px;
    }
    
    <!-- .logo { -->
        <!-- width: 150px; -->
        <!-- height: 150px; -->
        <!-- border-radius: 50%; -->
        <!-- border: 4px solid white; -->
        <!-- box-shadow: var(--shadow-large); -->
        <!-- object-fit: cover; -->
    <!-- } -->
    
	.logo {
	  width: 250px; /* o más si lo deseas */
	  height: auto;
	  border-radius: 50%;
	  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	  margin-top: 20px;
	}	
	
    header h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: white;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Hero CTA */
    .hero-cta {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Buttons */
    .button, .whatsapp-btn {
        display: inline-block;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: var(--radius);
        font-weight: 600;
        text-align: center;
        transition: var(--transition);
        cursor: pointer;
    }
    
    .button {
        background: var(--accent-color);
        color: var(--text-dark);
        border: none;
    }
    
    .button:hover {
        background: #ff9100;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }
    
    .button-outline {
        background: transparent;
        border: 2px solid var(--text-light);
        color: var(--text-light);
    }
    
    .button-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .whatsapp-btn {
        background: #25D366;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .whatsapp-btn:hover {
        background: #22c55e;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
        color: white;
    }
    
    /* Sections */
    section {
        padding: 4rem 1rem;
    }
    
    section:nth-child(odd) {
        background: white;
    }
    
    section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2.5rem;
        position: relative;
    }
    
    section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 2px;
    }
    
    /* About Section */
    .about-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-content p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    
    .highlight {
        font-weight: 600;
        color: var(--primary-color);
    }
    
    /* Features */
    .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    @media (max-width: 992px) {
        .features {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .features {
            grid-template-columns: 1fr;
        }
    }
    
    .feature-card {
        background: white;
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow);
        text-align: center;
        transition: var(--transition);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-large);
    }
    
    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    /* Products */
    .product-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }
    
    @media (max-width: 992px) {
        .product-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .product-list {
            grid-template-columns: 1fr;
        }
    }
    
    .product {
        background: white;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
    }
    
    .product:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-large);
    }
    
    .product-img-container {
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    
    .product img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product:hover img {
        transform: scale(1.05);
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product h3 {
        font-size: 1.1rem;
        margin: 0 0 0.5rem 0;
        color: var(--primary-dark);
    }
    
    .product-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }
    
    .product-protein {
        background: var(--primary-light);
        color: white;
        padding: 0.2rem 0.6rem;
        border-radius: 50px;
        font-size: 0.8rem;
    }
    
    /* Brands Carousel */
    .brand-carousel {
        padding: 4rem 1rem;
        background: linear-gradient(to right, #f9fdf9, #e8f5e9);
    }
    
    .carousel-container {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 1rem 0;
        scrollbar-width: none; /* Firefox */
    }
    
    .carousel-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .card {
        min-width: 520px;
        max-width: 520px;
        background-color: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 1.5rem;
        flex: 0 0 auto;
        scroll-snap-align: start;
        border-top: 4px solid var(--primary-color);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 550px;
        overflow: hidden;
        position: relative;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-large);
    }
    
    .card img {
        max-width: 60px;
        max-height: 30px;
        object-fit: contain;
        margin-bottom: 0.5rem;
        align-self: center;
    }
    
    .card h3 {
        color: var(--primary-color);
        margin: 0.5rem 0;
    }
    
    .card-content {
        overflow: hidden;
        flex: 1;
        font-size: 0.85rem;
    }
    
    .card p {
        margin: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .card a {
        display: inline-block;
        margin-top: 1rem;
        color: var(--primary-color);
        font-weight: 600;
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
        font-size: 0.85rem;
    }
    
    .card a:hover {
        text-decoration: underline;
    }
   
    .card-toggle {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--primary-color);
        font-weight: 600;
        cursor: pointer;
        font-size: 0.85rem;
    }
    
    .scroll-arrows {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .scroll-arrow:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    /* Contact Section */
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    
    .contact-info p {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        margin-right: 0.8rem;
        width: 40px;
        height: 40px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }
    
    .map-container {
        border-radius: var(--radius);
        overflow: hidden;
        height: 100%;
        min-height: 300px;
        box-shadow: var(--shadow);
    }
    
    /* Footer */
    footer {
        background: var(--primary-dark);
        color: white;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        height: 60px;
        border-radius: 50%;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition);
    }
    
    .social-link:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
    }
    
    .copyright {
        margin-top: 1rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Floating Buttons */
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 9999;
    }
    
    .whatsapp-float {
        background-color: #25D366;
        color: white;
        padding: 6px 12px;
        border-radius: 30px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        display: flex;
        align-items: center;
        box-shadow: var(--shadow);
        animation: bounce 2s infinite;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .whatsapp-float:hover {
        background-color: #22c55e;
        transform: translateY(-3px) scale(1.02);
        color: white;
    }
    
    .whatsapp-float img {
        height: 16px;
        margin-right: 6px;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    
    .floating-review-button {
        background-color: #4285f4;
        color: white;
        padding: 6px 12px 6px 28px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: var(--shadow);
        transition: var(--transition);
        background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg');
        background-repeat: no-repeat;
        background-position: 8px center;
        background-size: 14px;
        font-size: 12px;
    }
    
    .floating-review-button:hover {
        background-color: #3b78e7;
        transform: translateY(-3px) scale(1.02);
        color: white;
    }
    
    /* Expanded card styles */
    .card.expanded {
        height: auto;
        max-height: 800px;
    }
    
    /* Responsive styles */
    @media (max-width: 992px) {
        .contact-container {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }
        
        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            flex-direction: column;
            text-align: center;
            padding: 1rem;
            gap: 1rem;
            transform: translateY(-150%);
            transition: transform 0.3s ease;
        }
        
        .nav-links.active {
            transform: translateY(0);
            box-shadow: var(--shadow);
        }
        
        header h1 {
            font-size: 1.8rem;
        }
        
        .hero-cta {
            flex-direction: column;
        }
    }

.carrusel-marcas {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.carrusel {
  overflow: hidden;
  position: relative;
  height: 100px;
  max-width: 1200px;         /* Limita el ancho máximo */
  margin: 0 auto;            /* Centra horizontalmente */
  padding: 0 40px;           /* Espacio desde los bordes */
}

.carrusel-track {
  display: flex;
  align-items: center;
  animation: scroll-logos 30s linear infinite;
}

.carrusel-track img {
  height: 70px;
  width: auto;
  margin: 0 20px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}