* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Minion Pro', serif;
    color: #0B223D;
    line-height: 1.8;
    background-color: #FFF6E5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Header */
header {
    background-color: #0B223D;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Ajusta según el tamaño de tu logo */
    width: auto;
    max-width: 200px; /* Limita el ancho máximo */
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #FFF6E5;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #BF832B;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(11, 34, 61, 0.92) 0%, rgba(55, 68, 98, 0.92) 100%), 
                url('assets/images/1.jpeg') center/cover;
    color: #FFF6E5;
    padding: 6rem 0;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.95;
}

.hero-experience {
    font-size: 1.1rem;
    color: #FCCF7B;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn {
    padding: 1.1rem 2.2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Georgia', 'Minion Pro', serif;
}

.btn-primary {
    background-color: #BF832B;
    color: #FFF6E5;
}

.btn-primary:hover {
    background-color: #8F6321;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 131, 43, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFF6E5;
    border: 2px solid #FFF6E5;
}

.btn-secondary:hover {
    background-color: #FFF6E5;
    color: #0B223D;
}

/* Introduction Section */
.introduction {
    padding: 5rem 0;
    background-color: #FFF6E5;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #0B223D;
    margin-bottom: 1rem;
    font-weight: 600;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: #BF832B;
    margin: 0 auto 2.5rem;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    text-align: center;
    color: #374462;
    line-height: 1.9;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.solution-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-card h3 {
    color: #0B223D;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.35rem;
    line-height: 1.4;
}

.solution-card p {
    color: #374462;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.02rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0B223D 0%, #374462 100%);
    position: relative;
}

.benefits .section-title {
    color: #FFF6E5;
}

.benefits .title-underline {
    background-color: #BF832B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 246, 229, 0.03);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s ease;
    border: none;
    border-bottom: 2px solid rgba(191, 131, 43, 0.3);
    padding-bottom: 2rem;
}

.benefit-card:hover {
    transform: translateX(10px);
    border-bottom-color: #BF832B;
}

.benefit-number {
    font-size: 1.1rem;
    color: #BF832B;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.benefit-card h3 {
    color: #FFF6E5;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.benefit-card p {
    color: #A8A9A9;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #0B223D;
    color: #FFF6E5;
}

.faq .section-title {
    color: #FFF6E5;
}

.faq .title-underline {
    background-color: #BF832B;
}

.faq-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(255, 246, 229, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border-left: 3px solid #BF832B;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 246, 229, 0.08);
}

.faq-icon {
    color: #BF832B;
    font-size: 1.2rem;
    transition: transform 0.3s;
    margin-top: 0.2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFF6E5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 3.5rem;
    color: #A8A9A9;
    line-height: 1.7;
}

.faq-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Section */
.form-section {
    background-color: #374462;
    padding: 5rem 0;
    color: #FFF6E5;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #BF832B;
}

.form-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FFF6E5;
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.form-info ul {
    list-style: none;
    margin-top: 2rem;
}

.form-info li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.form-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #BF832B;
    font-weight: bold;
    font-size: 1.3rem;
}

form {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0B223D;
    font-weight: 500;
    font-size: 0.95rem;
}

input, select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #A8A9A9;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Georgia', 'Minion Pro', serif;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: #BF832B;
}

.form-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #BF832B;
    color: #FFF6E5;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Georgia', 'Minion Pro', serif;
    font-weight: 600;
}

.form-btn:hover {
    background-color: #8F6321;
}

/* Footer */
footer {
    background-color: #0B223D;
    color: #FFF6E5;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Logo de fondo en blanco y negro */
.footer-background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 80%;
    background-image: url('assets/images/Logo2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    filter: grayscale(100%) brightness(1.5);
    z-index: 0;
    pointer-events: none;
}

/* Contenedor del footer con z-index */
.footer-container {
    position: relative;
    z-index: 1;
}

footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

footer .footer-section h3 {
    color: #BF832B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

footer .footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: #A8A8A9;
}

footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(191, 131, 43, 0.3);
    color: #A8A8A9;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .form-container,
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-image {
        max-height: 300px;
    }

    .solutions-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero {
        padding: 4rem 0;
    }
    
    .footer-background-logo {
        width: 80%;
        height: 60%;
        opacity: 0.05;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-background-logo {
        width: 100%;
        opacity: 0.04;
    }
}