* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;700&display=swap');

body {
    font-family: 'Caveat', cursive;
    color: #333;
}

/* Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #4b4b4b;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-sorpresa {
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.hero-text p {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Content Section */
.content-section {
    background-color: #fff;
    padding: 80px 40px;
    min-height: auto;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: 48px;
    color: #2a9b8e;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 500;
}

.text-content {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.text-content p {
    margin-bottom: 25px;
    text-align: justify;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* Solutions Section */
.solutions-section {
    background-color: #f9f9f9;
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.solutions-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.solutions-question {
    font-size: 28px;
    color: #2a9b8e;
    font-weight: 500;
    margin: 0;
    flex: 1;
    text-align: left;
}

.solutions-btn {
    background-color: #2a9b8e;
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    font-family: 'Caveat', cursive;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.solutions-btn:hover {
    background-color: #227d73;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero-text p {
        font-size: 28px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .text-content {
        font-size: 16px;
    }

    .solutions-section {
        padding: 60px 20px;
    }

    .solutions-content {
        flex-direction: column;
        gap: 20px;
    }

    .solutions-question {
        text-align: center;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 14px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .text-content {
        font-size: 14px;
    }

    .content-section {
        padding: 40px 15px;
    }
}
