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

:root {
    /* Color Palette - Neutros, bege, branco e marrom */
    --primary-beige: #F5F1EB;
    --secondary-beige: #E8DDD4;
    --warm-brown: #8B6F47;
    --dark-brown: #5D4E37;
    --light-cream: #FAF8F5;
    --soft-gray: #A8A29E;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #6B7280;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(139, 111, 71, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 111, 71, 0.15);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-cream);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--warm-brown);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20B954;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--warm-brown);
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-modality {
    font-size: 1.1rem;
    color: var(--warm-brown);
    font-weight: 500;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--warm-brown);
    color: white;
    padding: 18px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    background: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.decoration-leaves {
    width: 200px;
    height: 200px;
    object-fit: contain;
    opacity: 0.3;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--warm-brown);
    font-weight: 500;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--primary-beige);
    border-radius: var(--border-radius);
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--warm-brown);
    width: 30px;
}

.credential-item h4 {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.credential-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background: var(--primary-beige);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--warm-brown);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--warm-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--primary-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-method i {
    font-size: 1.5rem;
    width: 30px;
}

.contact-method.whatsapp i {
    color: #25D366;
}

.contact-method.email i {
    color: var(--warm-brown);
}

.contact-method.instagram i {
    color: #E4405F;
}

.contact-method strong {
    color: var(--dark-brown);
    display: block;
    margin-bottom: 2px;
}

.contact-method span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-brown);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-beige);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: var(--warm-brown);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--light-cream);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-beige);
}

.footer p,
.footer li {
    color: var(--soft-gray);
    margin-bottom: 8px;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: var(--soft-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-beige);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--warm-brown);
}

.footer-bottom p {
    color: var(--soft-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 10px 15px;
    }
    
    .nav-title {
        font-size: 1.1rem;
    }
    
    .whatsapp-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .whatsapp-btn i {
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 70px; /* Reduzido para dar mais espaço ao conteúdo */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero-modality {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .profile-image {
        width: 280px;
        height: 380px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 8px 12px;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .whatsapp-btn i {
        font-size: 0.9rem;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 15px 10px;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-modality {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .profile-image {
        width: 240px;
        height: 320px;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step,
.credential-item {
    animation: fadeInUp 0.6s ease-out;
}



/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    max-width: 280px;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
    font-size: 1.5em;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 0.9em;
    white-space: nowrap;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: var(--dark-brown);
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
}

.modal-content h3 {
    color: var(--dark-brown);
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.modal-content ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.modal-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.modal-content ul li::before {
    content: '\2022';
    color: var(--warm-brown);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.modal-content strong {
    color: var(--warm-brown);
}

.close {
    color: var(--warm-brown);
    font-size: 2.5em;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--dark-brown);
}

.modal-cta {
    background-color: var(--primary-beige);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 40px;
}

.modal-cta h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.modal-cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.modal-cta-btn {
    background-color: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.modal-cta-btn:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    color: var(--white);
}

/* Area Link Styling */
.area-link {
    color: var(--warm-brown);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: var(--secondary-beige);
    text-underline-offset: 4px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.area-link:hover {
    color: var(--dark-brown);
    text-decoration-color: var(--warm-brown);
}

/* Hero Credentials */
.hero-credentials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.credential-badge {
    background-color: var(--secondary-beige);
    color: var(--warm-brown);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9em;
    box-shadow: var(--shadow-soft);
}

.credential-badge i {
    font-size: 1.1em;
}

/* Service Button */
.service-btn {
    background-color: var(--warm-brown);
    color: var(--white);
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.service-btn:hover {
    background-color: var(--dark-brown);
}

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments for modals */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px;
    }

    .modal-content h2 {
        font-size: 1.8em;
    }

    .modal-content h3 {
        font-size: 1.4em;
    }

    .modal-cta-btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .floating-whatsapp {
        padding: 10px 12px;
        font-size: 0.8em;
        bottom: 15px;
        right: 15px;
        max-width: 180px;
    }

    .floating-whatsapp i {
        font-size: 1.2em;
    }

    .whatsapp-text {
        font-size: 0.75em;
    }

    .floating-whatsapp .tooltip {
        right: 60px;
    }

    .hero-credentials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 1.5em;
    }

    .modal-content h3 {
        font-size: 1.2em;
    }

    .modal-content p,
    .modal-content ul li {
        font-size: 0.9em;
    }

    .modal-cta-btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    .hero-credentials {
        flex-direction: column;
        align-items: center;
    }

    .credential-badge {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}


/* Welcome Popup */
.welcome-popup {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.welcome-popup-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-width: 900px;
    width: 95%;
    position: relative;
    animation: welcomeSlideIn 0.5s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.welcome-header {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-header h2 {
    color: var(--dark-brown);
    font-size: 2.5em;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.welcome-header p {
    color: var(--text-dark);
    font-size: 1.2em;
    line-height: 1.6;
}

.welcome-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.welcome-service-card {
    background-color: var(--light-cream);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.welcome-service-card::after {
    content: "Saber mais";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--warm-brown);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 600;
    opacity: 0.8;
    pointer-events: none;
}

.welcome-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--warm-brown);
}

.welcome-service-card:hover::after {
    opacity: 1;
}

.welcome-service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--warm-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5em;
}

.welcome-service-card h3 {
    color: var(--dark-brown);
    font-size: 1.4em;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.welcome-service-card p {
    color: var(--text-dark);
    font-size: 0.95em;
    line-height: 1.5;
}

.welcome-cta {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-beige);
    border-radius: var(--border-radius);
}

.welcome-cta p {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-bottom: 20px;
}

.welcome-cta-btn {
    background-color: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.welcome-cta-btn:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    color: var(--white);
}

@keyframes welcomeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments for welcome popup */
@media (max-width: 768px) {
    .welcome-popup-content {
        padding: 30px;
        width: 98%;
    }

    .welcome-header h2 {
        font-size: 2em;
    }

    .welcome-header p {
        font-size: 1.1em;
    }

    .welcome-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .welcome-service-card {
        padding: 20px;
    }

    .welcome-service-card::after {
        content: "Toque para saber mais";
        bottom: 8px;
        right: 8px;
        font-size: 0.65em;
        padding: 3px 6px;
        opacity: 1;
    }

    .welcome-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }

    .welcome-service-card h3 {
        font-size: 1.2em;
    }

    .welcome-service-card p {
        font-size: 0.9em;
    }

    .welcome-cta-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .welcome-popup-content {
        padding: 20px;
        margin: 10px;
    }

    .welcome-header h2 {
        font-size: 1.8em;
    }

    .welcome-header p {
        font-size: 1em;
    }

    .welcome-service-card {
        padding: 15px;
    }

    .welcome-service-card::after {
        content: "Toque aqui";
        bottom: 6px;
        right: 6px;
        font-size: 0.6em;
        padding: 2px 5px;
        opacity: 1;
    }

    .welcome-service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }

    .welcome-service-card h3 {
        font-size: 1.1em;
    }

    .welcome-service-card p {
        font-size: 0.85em;
    }

    .welcome-cta-btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}




