/* =========================================
   RESET
========================================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   FONTS
========================================= */

@font-face{

    font-family: "Poppins";

    src: url("../fonts/Poppins/Poppins-Regular.ttf");

    font-weight: 400;

}

@font-face{

    font-family: "Poppins";

    src: url("../fonts/Poppins/Poppins-Medium.ttf");

    font-weight: 500;

}

@font-face{

    font-family: "Poppins";

    src: url("../fonts/Poppins/Poppins-SemiBold.ttf");

    font-weight: 600;

}

@font-face{

    font-family: "Poppins";

    src: url("../fonts/Poppins/Poppins-Bold.ttf");

    font-weight: 700;

}

/* PLAYFAIR DISPLAY */

@font-face{

    font-family: "Playfair Display";

    src: url("../fonts/PlayfairDisplay/PlayfairDisplay-Regular.ttf");

    font-weight: 400;

}

@font-face{

    font-family: "Playfair Display";

    src: url("../fonts/PlayfairDisplay/PlayfairDisplay-SemiBold.ttf");

    font-weight: 600;

}

@font-face{

    font-family: "Playfair Display";

    src: url("../fonts/PlayfairDisplay/PlayfairDisplay-Bold.ttf");

    font-weight: 700;

}

/* =========================================
   ROOT
========================================= */

:root{

    --primary-color: #0b2c5d;
    --secondary-color: #c7a04a;

    --background-color: #f8f8f6;
    --text-color: #1f1f1f;

    --white: #ffffff;

    --shadow-light: 0 10px 30px rgba(0,0,0,0.06);

    --transition: 0.3s ease;

}

/* =========================================
   GLOBAL
========================================= */

html{
    scroll-behavior: smooth;
}

body{

    font-family: 'Poppins', sans-serif;

    background: var(--background-color);

    color: var(--text-color);

    overflow-x: hidden;

}

.container{

    width: 90%;
    max-width: 1200px;

    margin: auto;

}

img{

    width: 100%;

    display: block;

}

a{

    text-decoration: none;

}

ul{

    list-style: none;

}

section{

    padding: 90px 0;

}

/* =========================================
   TITLES
========================================= */

.section-title{

    text-align: center;

    margin-bottom: 60px;

}

.section-title span{

    color: var(--secondary-color);

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 14px;

}

.section-title h2{

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    color: var(--primary-color);

    margin-top: 15px;

    line-height: 1.2;

}

.section-title p{

    max-width: 700px;

    margin: 20px auto 0;

    line-height: 1.8;

    color: #555;

}

/* =========================================
   BUTTONS
========================================= */

.btn-primary{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    background: var(--secondary-color);

    color: var(--white);

    border-radius: 8px;

    font-weight: 500;

    transition: var(--transition);

    box-shadow: 0 8px 25px rgba(199,160,74,0.25);

}

.btn-primary:hover{

    transform: translateY(-4px);

    background: var(--primary-color);

}

.btn-secondary{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border: 2px solid var(--primary-color);

    color: var(--primary-color);

    border-radius: 8px;

    font-weight: 500;

    transition: var(--transition);

}

.btn-secondary:hover{

    background: var(--primary-color);

    color: var(--white);

}

/* =========================================
   HEADER
========================================= */

.header{

    width: 100%;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 999;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(12px);

    box-shadow: var(--shadow-light);

}

.header .container{

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo img{

    width: 180px;

}

.nav-list{

    display: flex;

    align-items: center;

    gap: 35px;

}

.nav-list a{

    color: var(--primary-color);

    font-weight: 500;

    position: relative;

    transition: var(--transition);

}

.nav-list a::after{

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: var(--secondary-color);

    transition: var(--transition);

}

.nav-list a:hover::after{

    width: 100%;

}

.nav-list a:hover{

    color: var(--secondary-color);

}

.btn-whatsapp{

    padding: 14px 26px;

    background: var(--secondary-color);

    color: var(--white);

    border-radius: 8px;

    font-weight: 500;

    transition: var(--transition);

}

.btn-whatsapp:hover{

    background: var(--primary-color);

    transform: translateY(-3px);

}

/* =========================================
   MENU MOBILE
========================================= */

.menu-toggle{

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}

.menu-toggle span{

    width: 28px;
    height: 3px;

    background: var(--primary-color);

    border-radius: 10px;

}

/* =========================================
   HERO
========================================= */

.hero{

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    padding-top: 120px;

}

.hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(11,44,93,0.05),
        rgba(199,160,74,0.05)
    );

}

.hero-container{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 2;

}

.hero-tag{

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    background: rgba(199,160,74,0.12);

    border-radius: 50px;

    margin-bottom: 25px;

    color: var(--secondary-color);

    font-weight: 600;

    letter-spacing: 1px;

    font-size: 14px;

}

.hero-text h1{

    font-family: 'Playfair Display', serif;

    font-size: 68px;

    line-height: 1.1;

    color: var(--primary-color);

    margin-bottom: 25px;

}

.hero-text p{

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 35px;

    color: #555;

}

.hero-buttons{

    display: flex;

    align-items: center;

    gap: 20px;

}

.hero-image{

    position: relative;

}

.hero-image img{

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);

}

/* =========================================
   ÁREAS
========================================= */

.areas{

    background: var(--white);

}

.areas-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;

}

.area-card{

    background: var(--background-color);

    padding: 40px 30px;

    border-radius: 18px;

    transition: var(--transition);

    box-shadow: var(--shadow-light);

    border: 1px solid rgba(0,0,0,0.03);

}

.area-card:hover{

    transform: translateY(-10px);

}

.destaque-card{

    border: 2px solid var(--secondary-color);

    transform: scale(1.03);

}

.area-card h3{

    font-family: 'Playfair Display', serif;

    color: var(--primary-color);

    margin-bottom: 18px;

    font-size: 26px;

    line-height: 1.3;

}

.area-card p{

    line-height: 1.8;

    color: #555;

}

/* =========================================
   COMO FUNCIONA
========================================= */

.como-funciona{

    background: #f2f4f8;

}

.funciona-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.funciona-item{

    background: var(--white);

    padding: 35px 25px;

    border-radius: 18px;

    text-align: center;

    box-shadow: var(--shadow-light);

}

.funciona-item h3{

    font-family: 'Playfair Display', serif;

    color: var(--primary-color);

    margin-bottom: 15px;

    font-size: 24px;

}

.funciona-item p{

    color: #555;

    line-height: 1.7;

}

/* =========================================
   SOBRE
========================================= */

.sobre-home{

    background: var(--background-color);

}

.sobre-container{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 70px;

    align-items: center;

}

.sobre-image img{

    border-radius: 25px;

    box-shadow: var(--shadow-light);

}

.sobre-text span{

    color: var(--secondary-color);

    letter-spacing: 2px;

    text-transform: uppercase;

    font-weight: 600;

    font-size: 14px;

}

.sobre-text h2{

    font-family: 'Playfair Display', serif;

    font-size: 50px;

    color: var(--primary-color);

    margin: 20px 0;

    line-height: 1.2;

}

.sobre-text p{

    line-height: 1.9;

    margin-bottom: 20px;

    color: #555;

}

/* =========================================
   DIFERENCIAIS
========================================= */

.diferenciais{

    background: var(--white);

}

.diferenciais-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.diferencial-item{

    background: var(--background-color);

    padding: 40px 30px;

    border-radius: 18px;

    text-align: center;

    box-shadow: var(--shadow-light);

    transition: var(--transition);

}

.diferencial-item:hover{

    transform: translateY(-8px);

}

.diferencial-item h3{

    font-family: 'Playfair Display', serif;

    color: var(--primary-color);

    font-size: 24px;

}

/* =========================================
   CTA
========================================= */

.cta{

    background: linear-gradient(
        135deg,
        #081f44,
        #0b2c5d
    );

    color: var(--white);

}

.cta-container{

    text-align: center;

}

.cta-container h2{

    font-family: 'Playfair Display', serif;

    font-size: 54px;

    margin-bottom: 20px;

    line-height: 1.2;

}

.cta-container p{

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

    margin-bottom: 35px;

    opacity: 0.9;

}

/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float{

    position: fixed;

    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    z-index: 999;

    opacity: 0;

    transform: scale(1);

    transition: 0.3s ease;

}

/* MOSTRAR */

.whatsapp-float.show{

    opacity: 1;

}

/* PULSAR */

.whatsapp-float.pulse{

    animation: pulse 1s ease;

}

/* CLICK */

.whatsapp-float.clicked{

    transform: scale(0.90);

}

/* IMAGEM */

.whatsapp-float img{

    width: 100%;
    height: 100%;

}

/* ANIMAÇÃO */

@keyframes pulse{

    0%{

        transform: scale(1);

    }

    50%{

        transform: scale(1.12);

    }

    100%{

        transform: scale(1);

    }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 992px){

    .hero-container,
    .sobre-container,
    .areas-grid,
    .diferenciais-grid,
    .funciona-grid{

        grid-template-columns: 1fr 1fr;

    }

    .hero-text h1{

        font-size: 52px;

    }

}

@media(max-width: 768px){

    .navbar{

        position: absolute;

        top: 90px;
        left: -100%;

        width: 100%;

        background: var(--white);

        transition: var(--transition);

        padding: 40px 0;

        box-shadow: var(--shadow-light);

    }

    .navbar.active{

        left: 0;

    }

    .nav-list{

        flex-direction: column;

    }

    .menu-toggle{

        display: flex;

    }

    .header-buttons{

        display: none;

    }

    .hero-container,
    .sobre-container,
    .areas-grid,
    .diferenciais-grid,
    .funciona-grid{

        grid-template-columns: 1fr;

    }

    .hero{

        text-align: center;

    }

    .hero-buttons{

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-text h1{

        font-size: 42px;

    }

    .section-title h2{

        font-size: 34px;

    }

    .sobre-text h2{

        font-size: 38px;

    }

    .cta-container h2{

        font-size: 38px;

    }

}