:root {
    --primary: #000000;
    --secondary: #ec7364;
    --secondary-light: #f08a7d;
    --secondary-dark: #c45a4d;
    --background: #FFF5F3;
    --background-dark: #FFE8E5;
    --text: #000000;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.hero-cta .btn-primary {
    border: 2px solid var(--white);
    background-color: transparent;
}

.hero-cta .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    background-color: var(--white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: var(--primary);
}

.logo-pet {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary);
}

.cta-nav {
    background-color: var(--secondary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
}

.cta-nav:hover {
    background-color: var(--secondary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-dog-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 32px var(--shadow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-product {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 4px solid var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.product-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.product-text-2 {
    transform: translate(100px, -50px);
}

.percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.label {
    font-size: 0.875rem;
    color: var(--white);
}

.trust-bars {
    background-color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.5rem;
}

.como-funciona {
    padding: 5rem 0;
    background-color: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.step-description {
    color: var(--text-light);
}

.productos {
    padding: 5rem 0;
    background-color: var(--white);
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.products-grid .product-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    max-width: 350px;
}

.product-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.product-desc {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.product-benefit {
    color: var(--secondary);
    font-weight: 600;
}

.calculadora {
    padding: 5rem 0;
    background-color: var(--background);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--primary);
}

.form-group input[type="text"],
.form-group input[type="number"] {
    padding: 0.875rem;
    border: 2px solid var(--background-dark);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group input[type="range"] {
    width: 100%;
    margin-top: 0.5rem;
}

.range-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.calculator-result {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: none;
}

.calculator-result.active {
    display: block;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1rem 0;
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 600;
}

.planes {
    padding: 5rem 0;
    background-color: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 500px;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(236, 115, 100, 0.2);
}

.plan-header {
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--primary) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.plan-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25%, 25%);
    }
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.plan-period {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.plan-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-feature:last-child {
    border-bottom: none;
}

.plan-feature.inactive {
    color: var(--text-light);
    opacity: 0.6;
}

.feature-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.plan-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.plan-footer .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trazabilidad {
    padding: 5rem 0;
    background-color: var(--background);
}

.trazabilidad-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trazabilidad-text {
    text-align: left;
}

.trazabilidad-list {
    list-style: none;
    margin-top: 2rem;
}

.trazabilidad-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.trazabilidad-visual {
    display: flex;
    justify-content: center;
}

.qr-placeholder {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow);
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.qr-info p {
    margin: 0.5rem 0;
}

.qr-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.qr-subtitle {
    color: var(--text-light);
}

.qr-lote,
.qr-cert {
    font-size: 0.875rem;
    color: var(--secondary);
}

.qr-demo {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow);
    text-align: center;
}

.qr-code-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.qr-code-large svg {
    width: 100%;
    height: 100%;
}

.qr-demo-text {
    max-width: 400px;
}

.qr-demo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.qr-demo-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.calidad {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.calidad::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.calidad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.calidad-item {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.calidad-item:hover {
    transform: translateY(-4px);
}

.calidad-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.calidad-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.calidad-desc {
    color: var(--text-light);
}

.producto-formato {
    padding: 5rem 0;
    background-color: var(--background);
}

.producto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.producto-text {
    text-align: left;
}

.producto-list {
    list-style: none;
    margin-top: 2rem;
}

.producto-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.producto-visual {
    display: flex;
    justify-content: center;
}

.producto-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px var(--shadow);
    object-fit: cover;
}

.frascor-placeholder {
    position: relative;
    width: 200px;
    height: 300px;
}

.frascor-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #2a2a2a 100%);
    border-radius: 20px 20px 10px 10px;
    box-shadow: 0 8px 24px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.frascor-label {
    position: absolute;
    width: 80%;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.frascor-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.frascor-type {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0.25rem 0;
}

.frascor-weight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.frasco-placeholder {
    position: relative;
    width: 200px;
    height: 300px;
}

.frasco-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, #2a2a2a 100%);
    border-radius: 20px 20px 10px 10px;
    box-shadow: 0 8px 24px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.frasco-label {
    position: absolute;
    width: 80%;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.frasco-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.frasco-type {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0.25rem 0;
}

.frasco-weight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.d2c {
    padding: 5rem 0;
    background-color: var(--white);
}

.d2c-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.d2c-item {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.d2c-item:hover {
    transform: translateY(-4px);
}

.d2c-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.d2c-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.d2c-desc {
    color: var(--text-light);
}

.faq {
    padding: 5rem 0;
    background-color: var(--background);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.contacto {
    padding: 5rem 0;
    background-color: var(--white);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contacto-text {
    text-align: left;
}

.contacto-desc {
    color: var(--text-light);
    margin: 1.5rem 0;
}

.contacto-info {
    margin-top: 2rem;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}

.contacto-icon {
    font-size: 1.5rem;
}

.contacto-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contacto-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.contacto-link:hover {
    text-decoration: underline;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 24px var(--shadow);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-card .btn {
    margin-bottom: 1rem;
}

.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-logo .logo-pet {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(236, 115, 100, 0.5);
}

.footer-nav {
    text-align: center;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary);
}

.footer-legal {
    text-align: right;
}

.legal-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.testimonios {
    padding: 5rem 0;
    background-color: var(--white);
    overflow-x: hidden;
}

.testimonios-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 3rem;
    overflow: hidden;
    padding: 0 50px;
}

.testimonios-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(236, 115, 100, 0.3);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.testimonio-card {
    background-color: var(--background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.3s ease;
    flex: 0 0 350px;
    max-width: 350px;
    width: 350px;
}

.testimonio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-hover);
}

.testimonio-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid var(--secondary);
}

.testimonio-content {
    padding: 1.5rem;
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonio-info {
    flex: 1;
}

.testimonio-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.testimonio-plan {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonio-rating {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonio-text {
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonio-author {
    color: var(--secondary);
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonios-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.testimonio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--background-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonio-dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.testimonio-dot:hover {
    background-color: var(--secondary-light);
}

.testimonios-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
    border-radius: 16px;
    color: var(--white);
    margin-top: 3rem;
}

.testimonios-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.beneficios-rayun {
    padding: 5rem 0;
    background-color: var(--background);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.beneficio-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.beneficio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.beneficio-desc {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.lead-magnet {
    padding: 6rem 0;
    background-color: var(--white);
    color: var(--text);
}

.lead-magnet-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-magnet-left {
    padding-right: 2rem;
}

.lead-magnet-header {
    margin-bottom: 2rem;
}

.lead-magnet-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.lead-magnet-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.lead-magnet-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.lead-magnet-list {
    list-style: none;
    margin: 2rem 0;
}

.lead-magnet-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lead-magnet-cta {
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary);
}

.lead-magnet-cta p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

.lead-magnet-right {
    display: flex;
    justify-content: center;
}

.lead-magnet-form-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow);
    max-width: 450px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lead-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.15);
}

.lead-form label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.lead-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contacto-form-wrapper {
    background-color: var(--background);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto-form textarea {
    padding: 0.875rem;
    border: 2px solid var(--background-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contacto-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contacto-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacto-info-list {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 16px;
}

.contacto-text {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .hero-dog-image {
        width: 350px;
        height: 350px;
    }

    .hero-cta {
        justify-content: center;
    }

    .trazabilidad-content,
    .producto-content,
    .contacto-content,
    .contacto-wrapper,
    .lead-magnet-wrapper {
        grid-template-columns: 1fr;
    }

    .lead-magnet-left {
        padding-right: 0;
        text-align: center;
    }

    .lead-magnet-right {
        margin-top: 2rem;
    }

    .lead-magnet-form-card {
        max-width: 100%;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .comparativa-header,
    .comparativa-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }

    .comparativa-label {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 12px var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-container {
        flex-direction: column;
        text-align: center;
    }

    .steps-grid,
    .calidad-grid,
    .d2c-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        gap: 1.5rem;
    }

    .products-grid .product-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: 100%;
    }

    .calculator-wrapper,
    .cta-card {
        padding: 1.5rem;
    }

    .products-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .products-grid .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .testimonio-photo {
        height: 200px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .lead-magnet-form,
    .contacto-form-wrapper {
        padding: 1.5rem;
    }
}