/* Definição de Variáveis de Cor */
:root {
    --bg-color-main: #F5F5F5;
    --bg-color-footer: #304A6F;
    --color-title: #3A1E4D;
    --color-body-text: #333333;
    --color-whatsapp-button: #479C1D;
    --color-whatsapp-hover: #3b8217;
    --color-details: #C699CF;
    --color-light-accent: #FFF8BD;
    --font-title: 'Merriweather', serif;
    --font-body: 'Roboto', sans-serif;
}

/* Estilos Globais */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-body-text);
    background-color: var(--bg-color-main);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid de Layout Principal */
.grid-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

/* Estilos do Header */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
    position: relative;
}

.logo {
    font-family: var(--font-title);
    color: var(--color-title);
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-link {
    text-decoration: none;
    color: var(--color-body-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-title);
}

/* Estilos do Conteúdo Principal */
.main-content {
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-image: url('images/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(245, 245, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 70vh;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-title);
    letter-spacing: 0.3px;
    border: 1px solid rgba(198, 153, 207, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-title);
    color: var(--color-title);
    font-size: 2rem;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.hero-highlight {
    color: #6B3FA0;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #C699CF, #FFF8BD);
    border-radius: 3px;
    opacity: 0.6;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    color: #444;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-cta-group {
    margin-top: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-image-content {
    display: none;
    width: 100%;
    max-width: 340px;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    background: linear-gradient(135deg, #C699CF, #87CEEB, #FFF8BD, #C699CF);
    background-size: 300% 300%;
    animation: gradientRotate 6s ease infinite;
    z-index: -1;
    opacity: 0.7;
}

.euzelia-hero-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 15px 40px rgba(58, 30, 77, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.euzelia-hero-img:hover {
    transform: scale(1.03);
    box-shadow: 
        0 20px 50px rgba(58, 30, 77, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* WhatsApp Button */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #479C1D, #3b8217);
    color: #FFFFFF;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(71, 156, 29, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #3b8217, #2d6a10);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(71, 156, 29, 0.4);
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Seções Globais */
.section-title {
    font-family: var(--font-title);
    color: var(--color-title);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-details), var(--color-light-accent));
    border-radius: 2px;
}

.text-center .section-title::after,
.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Seção Sobre Mim */
.sobre-mim-section {
    background-color: var(--bg-color-main);
    padding: 4rem 0;
}

.sobre-mim-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.sobre-mim-image {
    width: 100%;
    max-width: 280px;
}

.euzelia-sobre-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(58, 30, 77, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.euzelia-sobre-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(58, 30, 77, 0.2);
}

.sobre-mim-text {
    flex: 1;
    font-size: 1.1rem;
    order: -1;
}

.sobre-mim-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Seção Missão */
.missao-section {
    background-color: var(--bg-color-main);
    padding: 4rem 0;
}

.missao-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.missao-header {
    max-width: 700px;
    margin-bottom: 3rem;
}

.missao-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.missao-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

.missao-card {
    background-color: #FFFFFF;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.missao-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-details), #87CEEB, var(--color-light-accent));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.missao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.missao-card:hover::before {
    opacity: 1;
}

.missao-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-light-accent), rgba(198, 153, 207, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.missao-card:hover .missao-icon-wrapper {
    transform: scale(1.08);
}

.missao-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.missao-card h3 {
    font-family: var(--font-title);
    color: var(--color-title);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.missao-card p {
    font-size: 1rem;
    color: var(--color-body-text);
    line-height: 1.6;
}

/* Seção Serviços */
.servicos-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.servicos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicos-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 3rem;
}

.servicos-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.servicos-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

.servico-card {
    background-color: var(--bg-color-main);
    padding: 2.5rem;
    border-radius: 14px;
    border-left: 5px solid var(--color-details);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left-color: var(--color-whatsapp-button);
}

.servico-card h3 {
    font-family: var(--font-title);
    color: var(--color-title);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.servico-card p {
    color: var(--color-body-text);
    line-height: 1.7;
}

.servicos-cta {
    text-align: center;
}

/* Seção Depoimentos */
.depoimentos-section {
    background-color: var(--bg-color-main);
    padding: 4rem 0;
}

.text-center {
    text-align: center;
    width: 100%;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left-color: var(--color-details);
}

.estrelas {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.depoimento-card p {
    font-style: italic;
    color: #555;
    flex-grow: 1;
    line-height: 1.7;
    position: relative;
}

.cliente-nome {
    font-weight: bold;
    color: var(--color-title);
    font-size: 0.95rem;
    text-align: right;
}

/* Seção FAQs */
.faq-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--bg-color-main);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item[open] {
    background-color: #FFFFFF;
    border: 1px solid rgba(198, 153, 207, 0.3);
    box-shadow: 0 6px 18px rgba(58, 30, 77, 0.06);
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-title);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6B3FA0;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-details);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-whatsapp-button);
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(198, 153, 207, 0.2);
    color: var(--color-body-text);
    line-height: 1.7;
}

/* Estilos do Rodapé */
.footer {
    background: linear-gradient(180deg, #2c4366, var(--bg-color-footer));
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-details), #87CEEB, var(--color-light-accent), var(--color-details));
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    text-align: center;
}

.footer-brand .footer-logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.footer-brand p {
    color: #CCCCCC;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #FFFFFF;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-whatsapp-button);
}

.footer-bottom {
    text-align: center;
}

.footer-credits {
    color: #AAAAAA;
    font-size: 0.9rem;
}

/* ========================================
   HAMBURGER MENU (Mobile)
   ======================================== */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    z-index: 110;
}

.nav-toggle:hover {
    background-color: rgba(198, 153, 207, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--color-title);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav (default hidden) */
.nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 105;
}

.nav.nav-open {
    display: flex;
}

.nav .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav .nav-link:last-child {
    border-bottom: none;
}

.nav .nav-link:hover {
    background-color: rgba(198, 153, 207, 0.08);
    color: var(--color-title);
}

/* ========================================
   EXTRA SMALL PHONES (≤380px)
   ======================================== */
@media (max-width: 380px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-inner {
        gap: 1.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-image-content {
        max-width: 220px;
    }

    .whatsapp-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .sobre-mim-image {
        max-width: 200px;
    }

    .missao-card {
        padding: 1.8rem 1.2rem;
    }

    .missao-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .missao-icon {
        width: 38px;
        height: 38px;
    }

    .servico-card {
        padding: 1.8rem 1.2rem;
    }

    .servico-card h3 {
        font-size: 1.15rem;
    }

    .depoimento-card {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .footer-brand .footer-logo {
        font-size: 1.4rem;
    }
}

/* ========================================
   SMALL PHONES (381px - 480px)
   ======================================== */
@media (min-width: 381px) and (max-width: 480px) {
    .hero-section {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-image-content {
        max-width: 260px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sobre-mim-image {
        max-width: 230px;
    }
}

/* ========================================
   TABLETS (≥768px)
   ======================================== */
@media (min-width: 768px) {
    /* Hide hamburger, show desktop nav */
    .nav-toggle {
        display: none;
    }

    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        border-top: none;
        gap: 1.8rem;
    }

    .nav .nav-link {
        width: auto;
        padding: 0;
        border-bottom: none;
        font-size: inherit;
    }

    .nav .nav-link:hover {
        background-color: transparent;
    }

    /* Sections padding */
    .sobre-mim-section,
    .missao-section,
    .servicos-section,
    .depoimentos-section,
    .faq-section {
        padding: 5rem 0;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    /* Hero */
    .hero-section {
        min-height: 90vh;
    }

    .hero-image-content {
        display: block;
    }

    .hero-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
        gap: 3rem;
        min-height: auto;
    }

    .hero-text-content {
        align-items: flex-start;
        flex: 1.2;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .hero-image-content {
        flex: 1;
        max-width: 350px;
        display: flex;
        justify-content: flex-end;
    }

    /* Sobre Mim */
    .sobre-mim-container {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .sobre-mim-text {
        order: 0;
        flex: 1.5;
    }

    .sobre-mim-image {
        flex: 0 0 auto;
        max-width: 280px;
        display: flex;
        justify-content: center;
    }

    .sobre-mim-text {
        flex: 1.5;
    }

    /* Missão */
    .missao-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Serviços */
    .servicos-grid {
        flex-direction: row;
        align-items: stretch;
    }

    /* Depoimentos */
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .social-icons {
        justify-content: flex-end;
    }
}

/* ========================================
   DESKTOP (≥1024px)
   ======================================== */
@media (min-width: 1024px) {
    .nav {
        gap: 2.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-image-content {
        max-width: 400px;
    }

    .sobre-mim-container {
        gap: 4rem;
    }

    .sobre-mim-image {
        max-width: 300px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .missao-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .servico-card h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   LARGE DESKTOP (≥1440px)
   ======================================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.35rem;
    }

    .hero-image-content {
        max-width: 450px;
    }

    .section-title {
        font-size: 2.6rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal overflow on all devices */
html, body {
    overflow-x: hidden;
}