﻿html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}
* {
    font-family: 'Inter', sans-serif;
}


:root {
    --alysa-primary: #061B3A;
    --alysa-secondary: #0D47A1;
    --alysa-accent: #00B6C7;
    --alysa-success: #38C172;
    --alysa-bg: #F4F7FA;
    --alysa-surface: #FFFFFF;
    --alysa-text: #334155;
    --primary-color: var(--alysa-primary);
    --secondary-color: var(--alysa-secondary);
    --text-color: var(--alysa-text);
    --bg-light: var(--alysa-bg);
    --white: var(--alysa-surface);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 5%;
    max-width: 1800px;
    margin: 0 auto;
    gap: 3rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px; 
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem; 
}

.nav-links a {
    text-decoration: none;
    color: #061B3A;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00B6C7;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    margin-left: auto;
    align-items: center;
}

.btn-outline {
    color: #0D47A1;
    background-color: #ffffff;
    border: 2px solid #0D47A1;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #F4F7FA;
}

.btn-solid {
    color: #ffffff;
    background-color: #0D47A1;
    border: 2px solid #0D47A1;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background-color: #061B3A;
    border-color: #061B3A;
}

.nav-contact-btn {
    display: inline-flex;
    width: auto;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    white-space: nowrap;
}


.btn-primary, .btn-contacto {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover, .btn-contacto:hover {
    background-color: var(--secondary-color);
}


.container {
    flex: 1; 
}


.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #EAF2FB 100%);
    text-align: center;
    padding: 6rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}


.features {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}


.main-footer {
    background-color: #061B3A;
    color: #E2E8F0;
    padding: 4rem 5% 2rem 5%;
    width: 100%; 
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}
.contacto-section {
    padding: 4rem 1rem;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 600px;
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: #334155;
    font-size: 0.95rem;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #CBD5E1;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    cursor: pointer;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}


@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 5% 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-header {
    max-width: 1000px;
    margin-bottom: 1.5rem;
}

.hero-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #061B3A;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight-green {
    color: #00B6C7;
}

.hero-header p {
    font-size: 1.2rem;
    color: #334155;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.hero-features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 2vh;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #F4F7FA;
    border: 1.5px solid #BDEEF2;
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #061B3A;
}

.feature-pill img {
    width: 35px;
    height: auto;
    object-fit: contain;
}

.hero-bottom-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
}

.hero-media {
    flex: 1;
    max-width: 60%;
}

.hero-media img {
    width: 100%;
    height: auto;
}

.hero-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    max-width: 40%;
}

.btn-solid-large {
    background-color: #0D47A1;
    color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #0D47A1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
}

.btn-solid-large:hover {
    background-color: #061B3A;
    border-color: #061B3A;
}

.btn-icon {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.review-btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.btn-outline-large {
    background-color: #ffffff;
    color: #0D47A1;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #0D47A1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
}

.btn-outline-large:hover {
    background-color: #F4F7FA;
}

@media (max-width: 900px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    .hero-header h1 {
        font-size: 2.8rem;
    }
    .hero-bottom-content {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-media, .hero-actions-vertical {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    .hero-header h1 {
        font-size: 2.8rem;
    }
    .hero-actions {
        flex-direction: column;
        padding: 0 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-body {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.features-section {
    background-color: #F4F7FA;
    padding: 6rem 5%;
    text-align: center;
}

.features-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.features-header h2 {
    font-size: 2.8rem;
    color: #061B3A;
    margin-bottom: 1rem;
    font-weight: 800;
}

.text-alysa {
    color: #0D47A1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card-centered {
    grid-column: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #061B3A;
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-card p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-centered {
        grid-column: auto;
    }
    .features-header h2 {
        font-size: 2.2rem;
    }
}

.transform-section {
    background-color: #ffffff;
    padding: 2rem 5% 6rem 5%;
}

.transform-header {
    text-align: center;
    margin-bottom: 4rem;
}

.transform-header h2 {
    font-size: 2.8rem;
    color: #061B3A;
    font-weight: 800;
}

.transform-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.transform-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
}

.transform-card h3 {
    font-size: 2.2rem;
    color: #061B3A;
    margin-bottom: 1rem;
    font-weight: 800;
}

.transform-subtitle {
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.5;
}

.benefit-list img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .transform-header h2 {
        font-size: 2.2rem;
    }
    .transform-card {
        padding: 2rem;
    }
    .transform-card h3 {
        font-size: 1.8rem;
    }
}

.pricing-section {
    background-color: #F4F7FA;
    padding: 4rem 5% 6rem 5%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 2.8rem;
    color: #061B3A;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.15rem;
    color: #334155;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 2px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}

.pricing-card-violet {
    border-color: #061B3A;
    box-shadow: 0 8px 25px rgba(6, 27, 58, 0.10);
}

.pricing-card-blue {
    border-color: #0D47A1;
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.15);
}

.pricing-card-green {
    border-color: #38C172;
    box-shadow: 0 8px 25px rgba(56, 193, 114, 0.14);
}

.pricing-card.highlighted {
    border: 2px solid #0D47A1;
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.15);
}

.plan-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    min-height: 28px;
    flex-wrap: wrap;
}

.badge-violet {
    background: linear-gradient(to right, #061B3A, #0D47A1);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-blue {
    background: linear-gradient(to right, #0D47A1, #00B6C7);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-green {
    background: linear-gradient(to right, #00B6C7, #38C172);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-price-container {
    text-align: center;
    margin-bottom: 2rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-example {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.text-violet {
    background: linear-gradient(to right, #061B3A, #0D47A1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-blue {
    background: linear-gradient(to right, #0D47A1, #00B6C7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-green {
    background: linear-gradient(to right, #00B6C7, #38C172);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.plan-period {
    font-size: 0.9rem;
    color: #334155;
    margin-top: 0.5rem;
}

.plan-features {
    flex-grow: 1;
}

.plan-features h4 {
    font-size: 1.1rem;
    color: #061B3A;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
}

.plan-features img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-ideal {
    background-color: #F4F7FA;
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ideal-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.ideal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ideal-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
    color: #334155;
}

.ideal-text strong {
    color: #061B3A;
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-animated {
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-size: 200% 200%;
    animation: moveGradient 3s ease infinite;
    transition: transform 0.3s ease;
}

.btn-animated:hover {
    transform: translateY(-2px);
}

.btn-violet {
    background-image: linear-gradient(270deg, #061B3A, #0D47A1, #061B3A);
}

.btn-blue {
    background-image: linear-gradient(270deg, #061B3A, #0D47A1, #00B6C7);
}

.btn-green {
    background-image: linear-gradient(270deg, #0D47A1, #00B6C7, #38C172);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-enterprise-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    width: 100%;
}

.enterprise-card {
    max-width: 800px;
    width: 100%;
    border: 2px solid #00B6C7;
    box-shadow: 0 8px 25px rgba(0, 182, 199, 0.15);
}

.plan-title-large {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

.badge-red {
    background: linear-gradient(to right, #061B3A, #00B6C7);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.text-red {
    background: linear-gradient(to right, #061B3A, #00B6C7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.btn-red {
    background-image: linear-gradient(270deg, #061B3A, #0D47A1, #00B6C7);
}

@media (max-width: 900px) {
    .enterprise-card {
        max-width: 450px;
    }
}

.badge-red {
    background: linear-gradient(to right, #061B3A, #00B6C7);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 2rem 5% 6rem 5%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    color: #061B3A;
    font-weight: 800;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.15rem;
    color: #334155;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-container {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #061B3A;
    font-size: 1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #334155;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-header h2 {
        font-size: 2.2rem;
    }
}
.cta-final-section {
    background-color: #ffffff;
    padding: 6rem 5%;
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

.cta-final-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-final-container h2 {
    font-size: 2.5rem;
    color: #061B3A;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #334155;
    font-weight: 500;
}

.cta-benefit-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: auto;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 8px;
    margin: 0 auto;
}

.cta-btn-large img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .cta-final-container h2 {
        font-size: 2rem;
    }
}

.main-footer {
    background-color: #061B3A; 
    color: #E2E8F0;
    padding: 4rem 5% 2rem 5%;
    width: 100%; 
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.brand-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto 1.5rem auto;
    color: #CBD5E1;
    max-width: 90%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #334155;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0D47A1;
}

.social-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-col a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.contact-col li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #CBD5E1;
}

.contact-col img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: #CBD5E1;
}

.eco-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.eco-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.scroll-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(to right, #00B6C7, #061B3A);
    border-radius: 50%;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
}

.scroll-top-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brand-col {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .brand-col {
        grid-column: span 1;
    }
}
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-danger {
    background-color: #FFF5F5;
    color: #991B1B;
    border: 1px solid #F87171;
}

.alert-danger strong {
    font-weight: 700;
}

.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.success-message h2 {
    color: #38C172;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #334155;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}


