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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #737373;
    background-color: #E9E0F0;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #5D3984;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #5D3984;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: 2.2rem;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(93, 57, 132, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.logo {
    margin: 0;
    color: #5D3984;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #5D3984;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

.brand-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1rem;
    color: #737373;
    font-weight: 400;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #5D3984;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #C3B2D6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C3B2D6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #5D3984;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 0,100 1000,100"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #5D3984;
    font-family: 'Great Vibes', cursive;
    font-size: 1.1em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #737373;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px dashed #C3B2D6;
    text-align: center;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-placeholder p {
    color: #5D3984;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: #5D3984;
    color: white;
    box-shadow: 0 4px 15px rgba(93, 57, 132, 0.3);
}

.btn-primary:hover {
    background: #4a2c6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 57, 132, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #5D3984;
    border: 2px solid #5D3984;
}

.btn-secondary:hover {
    background: #5D3984;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #C3B2D6;
    border-radius: 2px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: #FFFFFF;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.2rem;
    color: #737373;
    line-height: 1.8;
}

/* Services Overview (Serviços) */
.services-overview {
    padding: 80px 0;
    background: #C3B2D6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-overview .section-title {
    color: #5D3984;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(93, 57, 132, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 57, 132, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #5D3984;
}

.service-card p {
    color: #737373;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #FFFFFF;
}

.about .section-title {
    color: #5D3984;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text p {
    margin-bottom: 2rem;
}

.qualifications, .experience {
    margin-top: 2rem;
}

.qualifications h4, .experience h4 {
    margin-bottom: 1rem;
    color: #5D3984;
}

.qualifications ul, .experience ul {
    list-style: none;
    padding-left: 0;
}

.qualifications li, .experience li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.qualifications li::before, .experience li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5D3984;
    font-weight: bold;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 500px;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid #C3B2D6;
    box-shadow: 0 5px 20px rgba(93, 57, 132, 0.2);
}

/* Services Section (Serviços Detalhados) */
.services {
    padding: 80px 0;
    background: #C3B2D6;
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services .section-title {
    color: #5D3984;
}

.service-detail {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(93, 57, 132, 0.1);
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-detail h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #5D3984;
}

.service-detail p {
    color: #737373;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #737373;
}

.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5D3984;
    font-weight: bold;
}

/* Service Image Layout */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.service-detail:hover .service-image img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #E9E0F0;
}

.contact .section-title {
    color: #5D3984;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #5D3984;
}

.contact-item p {
    color: #737373;
    line-height: 1.6;
}

.whatsapp-cta {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.whatsapp-cta h4 {
    color: #5D3984;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.whatsapp-cta p {
    color: #737373;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.whatsapp-button:hover {
    background: #20B954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.3rem;
}



.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(93, 57, 132, 0.1);
}

.social-media {
    margin-top: 3rem;
    text-align: center;
}

.social-media h4 {
    margin-bottom: 1.5rem;
    color: #5D3984;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #5D3984;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: #5D3984;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 57, 132, 0.3);
}

.social-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 1.1rem;
    margin-right: 0.8rem;
    color: #5D3984;
    width: 18px;
    text-align: center;
}

/* Footer */
.footer {
    background: #5D3984;
    color: #E9E0F0;
    padding: 20px 0;
}

.footer-minimal {
    text-align: center;
}

.footer-minimal p {
    color: #E9E0F0;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-detailed {
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(93, 57, 132, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        text-align: center;
        gap: 2rem;
        max-width: 600px;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }

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

    .hero-buttons {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image img {
        width: 350px;
        height: 420px;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

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

    .services-detailed {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 1.5rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .service-image {
        height: 180px;
    }

    .service-image {
        height: 180px;
        margin: 0 auto 1rem auto;
    }

    .service-image img {
        margin: 0;
        padding: 0;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }


}

@media (max-width: 480px) {
    .header {
        position: fixed !important;
        top: 0 !important;
        z-index: 1000 !important;
        width: 100% !important;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .service-card,
    .service-detail,
    .whatsapp-cta {
        padding: 1.5rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .service-detail {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .about-image img {
        width: 280px;
        height: 336px;
    }
}

/* WhatsApp Float Button - CSS Backup */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    background: #25D366 !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-float {
    animation: pulse 2s infinite !important;

    .about-placeholder {
        width: 150px;
        height: 150px;
    }

    .about-icon,
    .hero-icon {
        font-size: 3rem;
    }
}

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

.hero-content,
.mission-content,
.service-card,
.service-detail {
    animation: fadeInUp 0.8s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #5D3984;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .hero-buttons,
    .contact-form,
    .social-media {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
    }
} 