/* RESET */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: #E3E3E3;
    background-color: #1a1a1a;
    line-height: 1.6;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    padding: 135px 40px 80px;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.3) 100%
    ), url('../img/hero-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
    animation: heroKenBurns 20s ease-in-out infinite alternate;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #2F2F2F);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    color: #E3E3E3;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero-form-wrapper {
    flex: 0 0 400px;
    opacity: 0;
    transform: translateX(40px) scale(0.97);
    animation: heroFormReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-form-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 36px 32px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-form-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 153, 0, 0.12);
}

.form-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9900, #e68a00);
    border-radius: 2px;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #999;
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-bottom: 20px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #bbb;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #E3E3E3;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 153, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);

}

.form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
    background: linear-gradient(135deg, #ff9900, #e68a00);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.form-btn:hover {
    transform: translateY(-2px);

}

.form-btn svg {
    transition: transform 0.3s ease;
}

.form-btn:hover svg {
    transform: translateX(3px);
}

.form-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.input-tel-wrapper {
    display: flex;
    align-items: baseline;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.input-tel-wrapper:focus-within {
    border-color: rgba(255, 153, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.input-tel-wrapper.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.input-tel-prefix {
    padding-left: 14px;
    color: #bbb;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

.input-tel-wrapper input {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding-left: 6px !important;
    flex: 1;
    min-width: 0;
}

.input-tel-wrapper input:focus {
    border: none !important;
    box-shadow: none !important;
}

.form-field-error {
    display: none;
    font-size: 0.78rem;
    color: #e74c3c;
    padding-left: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.form-mensaje-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.form-mensaje-footer .form-field-error {
    position: static;
}

.form-char-counter {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
    margin-left: auto;
    transition: color 0.2s ease;
}

.form-char-counter--limit {
    color: #e74c3c;
    font-weight: 600;
}

.form-response {
    display: none;
    font-size: 0.85rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.form-response--error {
    display: block;
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-align: center;
    padding: 3rem 2rem;
    min-height: 100%;
    box-sizing: border-box;
    animation: formSuccessIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9900, #e68a00);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(255, 153, 0, 0.35);
    animation: formIconPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.form-success-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9900, #e68a00);
    border-radius: 2px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}

.form-success p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
    max-width: 280px;
}

@keyframes formSuccessIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes formIconPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ANIMACIONES HERO */
@keyframes heroKenBurns {
    0%   { transform: scale(1)   translate3d(0, 0, 0); }
    100% { transform: scale(1.08) translate3d(-10px, -5px, 0); }
}

@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFormReveal {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-content.hero-scrolled {
    transition: transform 0.05s linear, opacity 0.05s linear;
}

.hero-form-wrapper.hero-scrolled {
    transition: transform 0.05s linear, opacity 0.05s linear;
}

.hero::before {
    transition: transform 0.05s linear;
}

/* SOLUCIONES */

.soluciones {
    background-color: #2F2F2F;
    padding: 80px 40px 70px;
    position: relative;
    overflow: hidden;
}

.soluciones-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.soluciones-accent {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 32px;
    background: linear-gradient(90deg, #ff9900, #ffbf57, #ff9900);
    background-size: 200% 100%;
    animation: accentShimmer 3s ease-in-out infinite;
}

@keyframes accentShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.soluciones-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.soluciones-desc {
    font-size: 1.08rem;
    font-weight: 300;
    color: #bbb;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 50px;
}

.soluciones-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.solucion-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 36px 24px 32px;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.solucion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff9900, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.solucion-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 153, 0, 0.2);
}

.solucion-card:hover::before {
    opacity: 1;
}

.solucion-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.08);
    border-radius: 50%;
    transition: background 0.35s ease, transform 0.35s ease;
}

.solucion-card:hover .solucion-icon {
    background: rgba(255, 153, 0, 0.16);
    transform: scale(1.08);
}

.solucion-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.solucion-card-desc {
    font-size: 0.92rem;
    font-weight: 300;
    color: #aaa;
    line-height: 1.6;
}

.soluciones-accent,
.soluciones-title,
.soluciones-desc,
.solucion-card {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeSlideUp 0.7s ease forwards;
}

.soluciones-accent { animation-delay: 0.1s; }
.soluciones-title  { animation-delay: 0.2s; }
.soluciones-desc   { animation-delay: 0.35s; }
.solucion-card:nth-child(1) { animation-delay: 0.5s; }
.solucion-card:nth-child(2) { animation-delay: 0.65s; }
.solucion-card:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PRODUCTOS */

.productos {
    background-color: #2F2F2F;
    padding: 90px 40px 100px;
}

.productos-container {
    max-width: 1100px;
    margin: 0 auto;
}

.productos-header {
    text-align: center;
    margin-bottom: 70px;
}

.productos-accent {
    width: 60px;
    height: 3px;
    margin: 0 auto 22px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff9900, #e68a00);
    animation: accentPulse 3s ease-in-out infinite;
}

.productos-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E3E3E3;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.productos-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #999;
}

.producto-card {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.producto-card:last-child {
    margin-bottom: 0;
}

.producto-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 153, 0, 0.15);

}

.producto-card--reverse {
    flex-direction: row-reverse;
}

.producto-image-wrapper {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.producto-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.producto-card:hover .producto-image-wrapper img {
    transform: scale(1.04);
}

.producto-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(47, 47, 47, 0.25), transparent);
    pointer-events: none;
}

.producto-card--reverse .producto-image-wrapper::after {
    background: linear-gradient(to left, rgba(47, 47, 47, 0.25), transparent);
}

.producto-info {
    flex: 1;
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.producto-name {
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    line-height: 1.25;
    border-left: 3px solid #ff9900;
    padding-left: 14px;
    
}

.producto-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.producto-features {
    list-style: none;
    margin-bottom: 28px;
}

.producto-features li {
    font-size: 0.9rem;
    color: #ccc;
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    font-weight: 400;
}

.producto-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9900' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.producto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    width: fit-content;
    background: linear-gradient(135deg, #ff9900, #e68a00);
    color: #fff;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease;
}

.producto-btn:hover {
    transform: translateY(-2px);

}

.producto-btn svg {
    transition: transform 0.3s ease;
}

.producto-btn:hover svg {
    transform: translateX(4px);
}

/* TRANSFORMA */

.transforma {
    background-color: #2F2F2F;
    padding: 90px 40px 90px;
    position: relative;
    overflow: hidden;
}

.transforma::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    width: 0;
    height: 0;
    background: none;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.transforma-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.transforma-header {
    text-align: center;
    margin-bottom: 60px;
}

.transforma-accent {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, #ff9900, #ffbf57, #ff9900);
    background-size: 200% 100%;
    animation: accentShimmer 3s ease-in-out infinite;
}

.transforma-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.transforma-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: #bbb;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.transforma-comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-col {
    flex: 1;
    padding: 36px 32px;
}

.comparison-before {
    background: rgba(255, 60, 60, 0.03);
}

.comparison-after {
    background: rgba(0, 200, 100, 0.03);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e85454;
    margin-bottom: 20px;
}

.comparison-label--positive {
    color: #34c770;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    font-size: 0.95rem;
    font-weight: 400;
    color: #999;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.comparison-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e85454;
    font-size: 0.8rem;
    font-weight: 700;
    top: 2px;
}

.comparison-list--positive li {
    color: #ccc;
}

.comparison-list--positive li::before {
    content: '✓';
    color: #34c770;
    font-size: 0.9rem;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 50px;
    flex-shrink: 0;
}

.divider-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 153, 0, 0.3), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 50%;
    margin: 12px 0;
    animation: dividerPulse 2.5s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.transforma-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.stat-item {
    text-align: center;
    padding: 36px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 0, 0.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.1);
    border-radius: 50%;
    transition: background 0.35s ease, transform 0.35s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 153, 0, 0.18);
    transform: scale(1.08);
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 300;
    color: #aaa;
    line-height: 1.55;
}

.transforma-cta {
    text-align: center;
}

.transforma-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #e68a00);
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-bottom: 3rem;
}

.transforma-cta-btn:hover {
    transform: translateY(-2px);

}

/* CONTACTO */

.contacto {
    background-color: #2F2F2F;
    padding: 90px 40px 80px;
    position: relative;
}

.contacto-header {
    text-align: center;
    margin-bottom: 60px;
}

.contacto-accent {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, #ff9900, #ffbf57, #ff9900);
    background-size: 200% 100%;
    animation: accentShimmer 3s ease-in-out infinite;
}

.contacto-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contacto-section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: #bbb;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.contacto-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.contacto-container:hover {
    border-color: rgba(255, 153, 0, 0.15);
}

.contacto-mapa {
    flex: 1;
    min-height: 380px;
    overflow: hidden;
}

.contacto-mapa iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 30px;
    padding: 20px;
}

.contacto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 0;
}

.contacto-dato {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contacto-dato:last-of-type {
    margin-bottom: 0;
}

.contacto-dato-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.08);
    border-radius: 50%;
}

.contacto-dato-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.contacto-dato-value {
    font-size: 0.92rem;
    font-weight: 300;
    color: #aaa;
    line-height: 1.5;
}

.contacto-logo {
    margin-top: 36px;
}

.contacto-logo img {
    max-width: 160px;
    height: auto;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-form-wrapper {
        flex: none;
        width: 100%;
        max-width: 420px;
    }

    .producto-card,
    .producto-card--reverse {
        flex-direction: column;
    }

    .producto-image-wrapper {
        flex: none;
        min-height: 280px;
    }

    .producto-info {
        padding: 32px 30px;
    }

    .productos-title {
        font-size: 1.9rem;
    }

    .soluciones-title {
        font-size: 1.8rem;
    }

    .soluciones-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .transforma-title {
        font-size: 1.8rem;
    }

    .transforma-comparison {
        flex-direction: column;
    }

    .comparison-divider {
        flex-direction: row;
        width: 100%;
        padding: 0 20px;
        height: 50px;
    }

    .divider-line {
        flex: 1;
        height: 1px;
        width: auto;
    }

    .transforma-stats {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto 56px;
    }

    .contacto-container {
        flex-direction: column;
    }

    .contacto-info {
        align-items: flex-start;
        padding: 40px 32px;
        text-align: left;
    }

    .contacto-dato {
        justify-content: flex-start;
        align-items: center;
    }

    .contacto-dato-icon {
        align-self: center;
        flex-shrink: 0;
    }

    .contacto-logo {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .contacto-mapa {
        min-height: 320px;
    }

    .contacto-mapa iframe {
        min-height: 320px;
    }

    .contacto-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.4rem;
        white-space: normal;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-accent {
        margin-left: auto;
        margin-right: auto;
    }

    .productos {
        padding: 50px 20px 60px;
    }

    .producto-image-wrapper {
        min-height: 220px;
    }

    .producto-info {
        padding: 26px 22px;
    }

    .productos-title {
        font-size: 1.5rem;
    }

    .producto-name {
        font-size: 1.2rem;
    }

    .header-container {
        padding: 0 16px;
    }

    .soluciones {
        padding: 50px 20px 50px;
    }

    .soluciones-title {
        font-size: 1.5rem;
    }

    .soluciones-desc {
        font-size: 0.95rem;
    }

    .transforma {
        padding: 60px 20px 60px;
    }

    .transforma-title {
        font-size: 1.5rem;
    }

    .transforma-subtitle {
        font-size: 0.92rem;
    }

    .comparison-col {
        padding: 28px 22px;
    }

    .contacto {
        padding: 50px 20px;
    }

    .contacto-title {
        font-size: 1.45rem;
    }

    .contacto-mapa {
        min-height: 260px;
    }

    .contacto-mapa iframe {
        min-height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none !important;
    }
    .hero-title,
    .hero-subtitle,
    .hero-form-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .soluciones-accent {
        animation: none !important;
    }
    .productos-accent {
        animation: none !important;
    }
    .transforma-accent {
        animation: none !important;
    }
    .divider-icon {
        animation: none !important;
    }
}
