/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2b2b2b;
    overflow-x: hidden;
    background-color: #1a1a1a;
}

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

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4a574;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://static.wixstatic.com/media/11062b_370a5be6ba304fa1b18971638e424790~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/11062b_370a5be6ba304fa1b18971638e424790~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    background: #d4a574;
    color: #1a1a1a;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #d4a574;
}

.btn-primary:hover {
    background: #c89660;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #d4a574;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #d4a574;
}

.btn-secondary:hover {
    background: #d4a574;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #242424;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #f5f5f5;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: #1a1a1a;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.mv-content {
    padding: 30px;
}

.mv-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4a574;
}

.mv-content p {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #242424;
}

.services-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #f5f5f5;
}

.services-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #d0d0d0;
}

.cta-banner {
    background: linear-gradient(135deg, #d4a574, #c89660);
    color: #1a1a1a;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.cta-banner h3 {
    font-size: 2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f5f5f5;
}

.contact-header p {
    font-size: 1.2rem;
    color: #c0c0c0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #3a3a3a;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    background: #2a2a2a;
    color: #f5f5f5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #d4a574;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c89660;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

.success-message.show {
    display: block;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a574;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .about-content,
    .services-hero {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .about-text h2,
    .services-content h2 {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }
}

/* Hero Small Section */
.hero-small {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://static.wixstatic.com/media/11062b_370a5be6ba304fa1b18971638e424790~mv2.jpg/v1/fill/w_1920,h_1080,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/11062b_370a5be6ba304fa1b18971638e424790~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.hero-small .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d4a574;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #d4a574;
}

.founder-text p {
    font-size: 1.2rem;
    color: #d0d0d0;
    line-height: 1.8;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: #242424;
}

.about-content-section h2 {
    font-size: 2.5rem;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-block h3 {
    font-size: 1.8rem;
    color: #d4a574;
    margin-bottom: 20px;
}

.about-text-block h4 {
    font-size: 1.5rem;
    color: #d4a574;
    margin: 30px 0 20px;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Scenarios Section */
.scenarios-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.scenarios-section h2 {
    font-size: 2.5rem;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 60px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.scenario-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
    transition: transform 0.3s;
}

.scenario-card:hover {
    transform: translateX(10px);
}

.scenario-card p {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: #242424;
}

.methodology-section h2 {
    font-size: 2.5rem;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 30px;
}

.methodology-section h3 {
    font-size: 1.8rem;
    color: #d4a574;
    text-align: center;
    margin-bottom: 50px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.methodology-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.methodology-icon {
    font-size: 2rem;
    color: #d4a574;
    min-width: 40px;
}

.methodology-item p {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.methodology-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.methodology-conclusion p {
    font-size: 1.3rem;
    color: #d4a574;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-text {
    text-align: center;
}

.cta-text h3 {
    font-size: 2rem;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background: #242424;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #2a2a2a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 20px;
    min-height: 60px;
}

.service-divider {
    width: 50px;
    height: 3px;
    background: #d4a574;
    margin: 20px auto;
}

.service-link {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #c89660;
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-detail-text h2 {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 25px;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-list li {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: #d4a574;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .founder-content,
    .about-grid,
    .cta-content,
    .service-detail-content {
        grid-template-columns: 1fr;
    }

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

    .scenarios-grid,
    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .hero-small .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-small .hero-content h1 {
        font-size: 2rem;
    }

    .founder-text h2,
    .about-content-section h2,
    .scenarios-section h2,
    .methodology-section h2 {
        font-size: 2rem;
    }
}
