/* ---------------------------------------------------------------------------------------------------- */
/* MODELO DE ORGANIZAÇÃO DO CSS */

/* selector { */

/* 0 SASS INHERITANCE*/
/* @extend, @mixin, e.g. clearfix */

/* 1 GENERATED CONTENT */
/* content */

/* 2 POSITION AND LAYOUT */
/* positiony, z-index, top, bottom, left, right, Flexbox properties, float, clear */

/* 3 DISPLAY AND VISIBILITY */
/* display, opacity, transform */

/* 4 CLIPPING */
/* overflow, clip  */

/* 5 ANIMATION */
/* animation, transition */

/* 6 BOX MODEL (FROM OUTSIDE IN) */
/* margin, box-shadow, border, border-radius, box-sizing, width, height, padding */

/* 7 BACKGROUND */
/* background, cursor */

/* 8 TYPOGRAPHY */
/* font-size, line-height, font-family, font-weight, font-style, text-align, text-transform, word-spacing, color */

/* 9 PSEUDO-CLASSES & PSEUDO-ELEMENTS (NESTED RULES) */
/* :hover, :focus, :active, :before, :after, :first-child, :last-child */

/* } */
/* ---------------------------------------------------------------------------------------------------- */

/* ================================================== */
/*                        GERAL                       */
/* ================================================== */

@import "tailwindcss";

* {
    /* 5 ANIMATION */
    scroll-behavior: smooth;
    
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    /* 8 TYPOGRAPHY */
    font-family: "Imbue", 'Times New Roman', serif;
}

body {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
}

.responsive-img {
    max-width: 100%;
    height: auto;
}

/* Tablet */
@media (max-width: 768px) {
    .responsive-img {
        width: 80%;
        /* ocupa 80% da largura */
    }
}

/* Mobile */
@media (max-width: 480px) {
    .responsive-img {
        width: 50%;
        /* ocupa toda a largura */
    }
}

/* ================================================== */
/*                        HEADER                      */
/* ================================================== */
.header {
    /* 2 POSITION AND LAYOUT */
    position: sticky;
    top: 0;
}

.container-header {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: space-between;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 100px;
    margin: 0 auto;

    /* 7 BACKGROUND */
    background-color: #555555;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 90%;
}

.logomarca img {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100px;
    height: auto;
    margin: 10px 30px;
}

.nav > ul {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: end;
    gap: 20px;
    list-style: none;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 30px;
}

li a {
    /* 8 TYPOGRAPHY */
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
    font-family: roboto, sans-serif;
}

.nav {
    /* 2 POSITION AND LAYOUT */
    align-content: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */

}

/* ================================================== */
/*                        HERO                        */
/* ================================================== */
.container-hero {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 800px;
    margin: 0 auto;

    /* 7 BACKGROUND */
    background-image: url('../img/law-woman.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container-logo-hero img {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 400px;
}

/* ================================================== */
/*                        SOBRE                       */
/* ================================================== */
.container-sobre {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 800px;
    margin: 0 auto;
    padding: 0 20px;

    /* 7 BACKGROUND */
    background-color: #ccc;
}

.sobre {
    /* 2 POSITION AND LAYOUT */
    max-width: 1024px;
}
.sobre h2 {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;
    
    /* 8 TYPOGRAPHY */
    font-size: 48px;
    color: #333;
    margin-bottom: 30px;    
}

.sobre p {
    /* 8 TYPOGRAPHY */
    font-family: roboto, sans-serif;
    font-size: 28px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
} 

/* ================================================== */
/*                        MEDIAS                      */
/* ================================================== */
.container-media01 {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 800px;
    margin: 0 auto;

    /* 7 BACKGROUND */
    background-image: url('../img/typing.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container-media01 h2, .container-media02 h2, .container-media03 h2{
    /* 8 TYPOGRAPHY */
    font-size: 48px;
    font-family: imbue,'Times New Roman', Times, serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    width: 60%;
    text-align: center;
}

.container-media01 h2:hover, .container-media02 h2:hover,
.container-media03 h2:hover{
    /* 5 ANIMATION */
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.container-media02 {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 800px;
    margin: 0 auto;

    /* 7 BACKGROUND */
    background-image: url('../img/hammer.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container-media03 {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 800px;
    margin: 0 auto;

    /* 7 BACKGROUND */
    background-image: url('../img/books.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ================================================== */
/*                      ADVOGADOS                     */
/* ================================================== */

.container-advogados {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 1400px;
    margin: 0 auto;
    padding: 0 20px;

    /* 7 BACKGROUND */
    background-color: #ccc;
    
}

.titulo-advogados {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;
    margin-bottom: 30px;

    /* 8 TYPOGRAPHY */
    
    font-size: 48px;
    color: #333;
}


.cards {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    max-width: 1024px;
    margin: 0 auto;
}

.card {
    /* 2 POSITION AND LAYOUT */
    max-width: 300px;
    height: 100%;
    text-align: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

.card-adv-img {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    height: 350px;
    border-radius: 3%;
    margin-bottom: 10px;
    border: 2px solid rgb(224, 223, 223);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card>img:hover, .card-area>img:hover {
    /* 5 ANIMATION */
    transform: scale(1.05);
    transition: transform 0.3s ease;
   
}

.card > h2, .card-area > h2 {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 10px;
    
    /* 8 TYPOGRAPHY */
    font-size: 24px;
    color: #333;
    text-align: center;   
}
    
.card > h3, .card-area > h3 {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 10px;
    
    /* 8 TYPOGRAPHY */
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.card > ul, .card-area > ul    {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;

    /* 8 TYPOGRAPHY */
    text-decoration: none;
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
    
}

.card > ul li, .card-area > ul li {
    /* 8 TYPOGRAPHY */
    font-family: roboto, sans-serif;
}

/* ================================================== */
/*                      AREAS                         */
/* ================================================== */

.container-areas {
    /* 2 POSITION AND LAYOUT */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    
    
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 2800px;
    margin: 0 auto;
    padding: 0 20px;

    /* 7 BACKGROUND */
    background-color: #ccc;
}

.titulo-areas {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;
    margin-bottom: 30px;

    /* 8 TYPOGRAPHY */
    font-size: 48px;
    color: #333;
    text-align: center;
}

.card-img {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100px;   
    height: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.5));
    
}

.cards-area, .cards-contato {
    /* 2 POSITION AND LAYOUT */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    max-width: 1024px;
    margin: 0 auto;
}

.card-area {
    /* 2 POSITION AND LAYOUT */
    max-width: 300px;
    height: 100%;
    text-align: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

/* ================================================== */
/*                      CONTATO                       */
/* ================================================== */
.container-contato {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 800px;
    margin: 0 auto;
    padding: 0 20px;

    /* 7 BACKGROUND */
    background-color: #555555;
}

.card-contato {
    /* 2 POSITION AND LAYOUT */
    
    
    max-width: 300px;
    height: 100%;
    text-align: left;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    padding: 20px;

    
    /* 8 TYPOGRAPHY */
    color: white
}

.card-contato h2 {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    margin-bottom: 20px;
    
    /* 8 TYPOGRAPHY */
    font-family: Imbue, 'Times New Roman', Times, serif;
    font-size: 26px;
    text-align: left;
    font-weight: 400;
}

.card-contato p, .card-contato a {
    /* 8 TYPOGRAPHY */
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    padding-bottom: ;
}

.card-contato a {
    /* 8 TYPOGRAPHY */
    text-decoration: none;
    color: white;
}

.card-contato img {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 15px;
}

svg {
    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 15px;
}

/* ================================================== */
/*                      FOOTER                        */
/* ================================================== */

.footer {
    /* 2 POSITION AND LAYOUT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* 6 BOX MODEL (FROM OUTSIDE IN) */
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 0 20px;

    /* 7 BACKGROUND */
    background-color: black;
}

.destaque a{
    /* 8 TYPOGRAPHY */
    text-decoration: none;
    color: yellow;
    font-family: roboto, sans-serif;
    font-size: 14px;
}

.titulo-footer h2{
    /* 8 TYPOGRAPHY */
    text-decoration: none;
    color: white;
    font-family: roboto, sans-serif;
    font-size: 14px;
}
