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

@font-face {
    font-family: 'iBrand';
    src: url('../assets/ibrand.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: hsl(165, 100%, 45%);
    --primary-dark: hsl(165, 100%, 35%);
    --secondary: #142734;
    --text-light: hsl(0, 0%, 95%);
    --text-muted: hsl(0, 0%, 70%);
    --card-bg: hsl(200, 40%, 98%);
    --border: hsl(200, 20%, 90%);
}

body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: hsl(200, 40%, 10%);
    background: hsl(0, 0%, 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'iBrand', sans-serif;
    font-weight: 700;
}

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

.text-primary {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--secondary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
}

.logo-text {
    display: none;
    font-family: 'iBrand', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.navbar-links {
    display: none;
    gap: 2rem;
}

.navbar-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 0 15px hsla(165, 100%, 45%, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 0 20px hsla(165, 100%, 45%, 0.4);
    transform: translateY(-2px);
}

.btn-mobile {
    font-size: 0.875rem;
}

.btn-desktop {
    display: none;
}

.btn-hero {
    width: 100%;
    justify-content: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.icon-arrow {
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    overflow: hidden;
    padding-top: 4rem;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, hsla(165, 100%, 45%, 0.15), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 1rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

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

.hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.mobile-line {
    display: block;
}

.desktop-line,
.desktop-break {
    display: none;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 42rem;
}

.hero-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
}

.hero-image {
    display: none;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blur-circle {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(60px);
}

.blur-top {
    top: -1rem;
    right: -1rem;
    background-color: hsla(165, 100%, 45%, 0.3);
}

.blur-bottom {
    bottom: -1rem;
    left: -1rem;
    background-color: hsla(165, 100%, 45%, 0.2);
}

/* Services Section */
.services {
    padding: 3rem 0;
    background-color: hsl(0, 0%, 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
}

.service-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding: 0.75rem;
    background-color: hsla(165, 100%, 45%, 0.1);
    border-radius: 0.75rem;
    width: fit-content;
}

.service-card:hover .icon-wrapper {
    background-color: hsla(165, 100%, 45%, 0.2);
}

.icon {
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    text-align: center;
}

.service-card p {
    color: var(--text-muted);
    text-align: justify;
}

/* Benefits Section */
.benefits {
    padding: 3rem 0;
    background-color: hsl(200, 20%, 97%);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-wrapper-small {
    padding: 0.75rem;
    background-color: hsla(165, 100%, 45%, 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.icon-small {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

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

.benefit-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: justify;
}

.partnership-card {
    margin-top: 4rem;
}

.partnership-card .card {
    border-color: hsla(165, 100%, 45%, 0.2);
    overflow: hidden;
}

.partnership-grid {
    display: grid;
}

.partnership-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 18.75rem;
}

.partnership-content {
    padding: 2rem;
    background-color: var(--card-bg);
}

.partnership-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.partnership-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background-color: hsl(200, 20%, 97%);
}

.contact-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-message {
    display: none;
    margin-top: -0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.form-message.visible {
    display: block;
}

.form-message.success {
    color: var(--primary);
}

.form-message.error {
    color: #ff6b6b;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary);
}

.contact-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--text-muted);
}

.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 2rem;
    height: 2rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .navbar-content {
        padding: 1rem;
    }

    .logo {
        width: 3rem;
        height: 3rem;
    }

    .navbar-links {
        display: flex;
    }

    .btn-mobile {
        display: none;
    }

    .btn-desktop {
        display: inline-flex;
    }

    .btn-hero {
        width: auto;
    }

    .hero-content {
        padding: 5rem 1rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero-title {
        font-size: 3rem;
    }

    .mobile-line {
        display: none;
    }

    .desktop-line {
        display: inline;
    }

    .desktop-break {
        display: block;
    }

    .hero-description {
        font-size: 1.25rem;
        margin-left: 0;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.125rem;
    }

    .services {
        padding: 5rem 0;
    }

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

    .icon-wrapper {
        display: inline-flex;
    }

    .service-card h3 {
        text-align: left;
    }

    .benefits {
        padding: 5rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 3rem;
    }

    .benefit-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .benefit-text {
        text-align: left;
    }

    .contact {
        padding: 5rem 0;
    }

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

    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-tagline {
        text-align: left;
    }

    .footer-copyright {
        font-size: 0.875rem;
    }

    .footer-links {
        gap: 1.5rem;
        font-size: 0.875rem;
    }

    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 4rem;
        height: 4rem;
    }

.whatsapp-button img {
    width: 2.5rem;
    height: 2.5rem;
}
}

@media (max-width: 767px) {
    .service-card-header {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .service-card h3 {
        text-align: left;
    }

    .service-card p {
        text-align: left;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .logo-text {
        display: block;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-description {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.15rem;
    }

    .hero-image {
        display: block;
    }

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .section-header p {
        font-size: 1.25rem;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .partnership-image {
        min-height: auto;
    }

    .partnership-content {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
