/* ==========================================
   FORTUNA VITA - STYLES
   Paleta: Cinza Claro (#D9D9D9), Dourado (#E6BF6E), Preto (#0F1119)
   ========================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Marca */
    --cinza-claro: #D9D9D9;
    --dourado: #E6BF6E;
    --preto: #0F1119;

    /* Tons Derivados */
    --cinza-medio: #C0C0C0;
    --dourado-claro: #F0D699;
    --dourado-escuro: #D4A854;

    /* Tipografia Moderna */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cinza-claro);
    color: var(--preto);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    background-color: var(--cinza-claro);
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(15, 17, 25, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-completo {
    height: 147px;
    width: auto;
    transform: scaleX(1.25);
    transition: transform 0.3s;
}

.logo-completo:hover {
    transform: scaleX(1.25) scale(1.05);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--dourado);
}

.btn-whatsapp {
    background-color: var(--dourado);
    color: var(--preto);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--dourado-escuro);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--cinza-claro) 0%, var(--cinza-medio) 100%);
    padding: 140px 0;
    text-align: center;
}

.slogan {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--preto);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--dourado-escuro);
    margin-bottom: 50px;
    opacity: 1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--dourado);
    color: var(--preto);
}

.btn-primary:hover {
    background-color: var(--dourado-escuro);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--preto);
    border: 2px solid var(--dourado);
}

.btn-secondary:hover {
    background-color: var(--dourado);
}

/* === SECTIONS === */
.section-sobre,
.section-servicos,
.section-contato {
    padding: 80px 0;
}

.section-sobre {
    background-color: white;
}

.section-servicos {
    background-color: var(--cinza-claro);
}

.section-contato {
    background-color: white;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--preto);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
    margin: 20px auto 0;
}

.intro-text {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === SOBRE SECTION === */
.section-sobre {
    background: white;
    padding: 100px 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.sobre-card {
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.sobre-card:hover {
    transform: translateY(-10px);
}

.sobre-card.visao {
    background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%);
}

.sobre-card.missao {
    background: linear-gradient(135deg, var(--cinza-claro) 0%, var(--cinza-medio) 100%);
}

.sobre-icon-professional {
    margin-bottom: 30px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.sobre-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.icon-circle svg {
    width: 40px;
    height: 40px;
    color: var(--preto);
}

.sobre-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--preto);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sobre-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--preto);
    opacity: 0.85;
}

/* Valores Section */
.valores-section {
    margin-top: 80px;
}

.valores-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--preto);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.valor-card {
    background: var(--cinza-claro);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.valor-card:hover {
    background: white;
    border-color: var(--dourado);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 191, 110, 0.25);
}

.valor-numero {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--dourado);
    border: 2px solid var(--dourado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.valor-icon-professional {
    margin: 20px auto 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-icon-professional svg {
    width: 45px;
    height: 45px;
    color: var(--dourado-escuro);
    transition: all 0.3s;
}

.valor-card:hover .valor-icon-professional svg {
    color: var(--dourado);
    transform: scale(1.15);
}

.valor-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--preto);
    margin-bottom: 15px;
    font-weight: 700;
}

.valor-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--preto);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }
}

/* === SERVIÇOS === */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.servico-card {
    background: white;
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 191, 110, 0.25);
    border-color: var(--dourado);
}

.servico-card.expanded {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(230, 191, 110, 0.35);
    border-color: var(--dourado);
}

.servico-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
}

.servico-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--preto);
    margin-bottom: 15px;
    font-weight: 700;
}

.servico-subtitle {
    font-size: 16px;
    color: var(--dourado-escuro);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.servico-preview {
    transition: opacity 0.3s;
}

.servico-card.expanded .servico-preview {
    opacity: 0.3;
}

.servico-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
}

.servico-card.expanded .servico-content {
    max-height: 1000px;
}

.servico-divider {
    width: 60px;
    height: 3px;
    background: var(--dourado);
    margin: 25px 0;
}

.servico-description {
    font-size: 15px;
    color: var(--preto);
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 20px;
}

.servico-description strong {
    color: var(--preto);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.btn-expand,
.btn-collapse {
    background: var(--dourado);
    color: var(--preto);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    margin-top: 10px;
}

.btn-expand:hover,
.btn-collapse:hover {
    background: var(--dourado-escuro);
    transform: scale(1.05);
}

.btn-collapse {
    background: var(--preto);
    color: var(--dourado);
    width: 100%;
}

.btn-collapse:hover {
    background: var(--dourado-escuro);
    color: white;
}

/* === CONTATO === */
.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon {
    font-size: 32px;
}

.info-item h4 {
    font-family: var(--font-heading);
    color: var(--dourado);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--preto);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--dourado);
}

/* === FOOTER === */
.footer {
    background-color: var(--preto);
    color: var(--dourado);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-completo {
    height: 123px;
    width: auto;
    transform: scaleX(1.25);
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-logo-completo:hover {
    opacity: 1;
    transform: scaleX(1.25) scale(1.05);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 5px 0;
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}