/*
Theme Name: Grupo CLR
Theme URI: 
Author: Caio Cesar
Author URI: https://github.com/caiocesaar
Description: 
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grupoclr
Tags: 
*/


/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Roboto:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Roboto&display=swap');

/* Setup */
@import url('css/bootstrap.min.css');
@import url('css/fontawesome.min.css');

:root {
    --secondary-color: #FFC700;
    --thirdy-color: #74A16D;
}

* { font-family: "DM Sans", serif ;}
a {
    text-decoration: none !important;
}

body {
    color: #151515;
}

.font-serif,
.font-serif span {
    font-family: "Fraunces", serif;
}

.font-serif-subtitle {
    font-size: 34px;
}

.header-site-pretitle {
    opacity: .75;
    text-transform: uppercase;
    font-size: 16px;
}

.header-subtitle {
    font-weight: 400;
    font-size: 24px;
}

#header-site {
    background-color: #2B2B32;
    padding: 20px 0;
    background-image: url(img/background.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 50%;
}

#header-site.environmental {
    background-color: #2F372E;
}

#menu-site {
    display: flex;
    align-items: center;
    justify-content: start;
    text-transform: uppercase;
}

#menu-contact-site {
    display: flex;
    align-items: center;
    justify-content: end;
}

.menu-site {
    margin-top: 30px;
}

.menu-site ul {
    list-style: none;
    padding-left: 0;
}

.menu-site ul li {
    flex: 1;
    flex-direction: 'row';
    float: left;
    margin-left: 20px;
}

.menu-site ul li a {
    color: #FFF;
    font-size: 14px;
    opacity: .4;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
}

#menu-contact-site ul li a {
    opacity: 1;
    font-size: 16px;
}

#menu-contact-site ul li a:hover {
    opacity: .4;
}

#menu-contact-site ul li a i {
    font-size: 18px;
}

.menu-site ul li a:hover {
    opacity: 1;
}

#header-site .header-site {
    color: #FFF;
    margin: 100px 0 ;

}

#header-site .header-site .font-serif {
    color: var(--secondary-color);
}

#header-site .header-site .font-serif.environmental {
    color: var(--thirdy-color);
}

#header-site .header-site .font-serif span {
    color: white;    
}

#hero-1 { background: url('img/hero1.jpg') no-repeat center top; height: 555px; }
#hero-2 { background: url('img/whatdo.jpg') no-repeat center top; height: 423px; }

.hero {
    background-size: cover;
    
}

#whatdo {
    padding: 100px 0;
}

#whatdo .font-serif {
    font-size: 48px;
}

#whatdo .font-serif span {
    color: var(--secondary-color);
}

#whatdo .font-serif.environmental span {
    color: var(--thirdy-color);
}

#whatdo h2 {
    opacity: .75;
    font-family: "DM Sans", serif !important;
}

#whatdo .header-site-pretitle {
    opacity: .5;
}

#whychooseus {
    padding-bottom: 80px;
}

#whychooseus h3 {
    font-size: 24px;
    opacity: .75;
    margin-bottom: 60px;
}

#whychooseus footer {
    margin-top: 40px;
    display: block;
}

#whychooseus .footer-item {
    display: flex;
    flex-direction: row;
    color: #999;
}

#whychooseus .footer-item .footer-item-icon {
    width: 30px;
    margin-right: 20px;
}

#whychooseus .footer-item article h4 {
    font-size: 18px;
    color : #151515;
}

.enumerated-itens {
    display: flex;
    flex-wrap: wrap;
}

.enumerated-item {
    border-top: 1px solid #EEE;
    border-left: 1px solid #EEE;
    padding: 40px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    width: 25%;

    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
}

.enumerated-item:first-child {
    border-left: 0;
}

.enumerated-item:hover {
    border-bottom: 3px solid #151515;
}

.enumarated-item-number {
    font-size: 20px;
    margin-bottom: 40px;
    display: block;
}

.enumarated-item-title {
    font-size: 28px;
}

.featured-section {
    background-color: #2B2B32;
    padding: 80px 0;
    color: #999;
    position: relative;
}

.featured-section.environmental {
    background-color: #2C322B;
}

.featured-section::before {
    content: "";
    display: block;
    position: absolute;
    width: 36%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    top: 0;
    left: 0;
}

.featured-section-1::before { background-image: url(img/featured-section-1.jpg) }
.featured-section-1.environmental::before { background-image: url(img/featured-section-3.png) }
.featured-section-2 { background-color: #1B1B25; }
.featured-section.environmental.featured-section-2 { background-color: #1F2C1D; }
.featured-section-2::before { background-image: url(img/featured-section-2.jpg) }
.featured-section-2.environmental::before { background-image: url(img/featured-section-4.png) }

.featured-section-title {
    color: #CCC;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

.featured-section-title.environmental {
    color: #ACBEA9;
}

.featured-section-title-image {
    margin-bottom: 20px;
}

.featured-section-title:hover {
    color: #FFF !important;
}

.featured-section-enumerated-itens {
    border-left: 1px solid #555;
}

.featured-section-enumerated-itens ul {
    list-style: none;
}

.featured-section-enumerated-itens ul li {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}

.featured-section-enumerated-itens ul li p { margin-bottom: 0; }

.featured-section-enumerated-itens ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.featured-section-number {
    font-size: 20px;
    color: white;
    margin-right: 20px;
}

.featured-section-service {
    margin-top: 50px;
}

.what-do {
    padding: 100px 0 ;
}

.what-do-subtitle {
    text-transform: uppercase;
    opacity: .5;
    font-size: 18px;
}

.what-do-title {
    font-size: 48px;
    opacity: .85;
    margin-bottom: 40px;
}

.what-do-item article p {
    opacity: .5;
}

.what-do-item header {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content:space-between;
    margin-bottom: 20px;
}

.what-do-item-title {
    font-size: 17px;
    opacity: 1 !important;
}

.what-do-item-number {
    font-size: 14px;
    color: #000;
    background-color: #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;;
}

#top-footer {
    padding: 40px 0;
    background-color: #FFC700;
    color: #2B2B32;
}

#top-footer p { margin-bottom: 0; }
#top-footer .partner {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
}

.top-footer-item {
    display: flex;
    justify-self: flex-start;
    color: #2B2B32 !important;
}

.top-footer-item figure {
    height: 62px;
    width: 62px;
    font-size: 22px;
    background-color: rgba(0,0,0,0.05);
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border-radius: 5px;
    margin-right: 10px;
}

.top-footer-item span {
    font-size: 14px;
}

#bottom-footer {
    background-color: #2B2B32;
    padding: 80px 0;
    color: #A3A3A3;
}

#bottom-footer h4 {
    font-size: 18px;
    color: #FFF;
    text-transform: uppercase;
}

#bottom-footer h5 {
    color: #FFF;
    font-size: 16px;
    margin-top: 30px;
}

#bottom-footer p {
    margin-bottom: 0;
}

#bottom-footer a {
    color: inherit;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
}

#bottom-footer a:hover {
    color: #FFF;
}

#bottom-footer-copyright {
    font-size: 12px;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #555;
    text-align: center;
}

#content-post {
    padding: 80px 0;
}

@media only screen and (max-width: 1024px) {

    .featured-section { padding-top: 0; }

    .featured-section::before { 
        position: relative;
        width: 100%;
        height: 400px;

    }

    .featured-section article {
        margin-top: 40px;
    }
    
    .featured-section-service {
        margin-top: 0;
    }

    .featured-section-enumerated-itens {
        border-left: 0;
    }

    .featured-section-enumerated-itens ul {
        padding-left: 0;
    }

}

@media only screen and (max-width: 990px) {
    .enumerated-item { width: 50%; }
    .enumerated-item { border-left: 0; }
    .top-footer-item { margin-top: 30px; }
}

@media only screen and (max-width: 768px) {
    #header-site .contact { display: none; }
}


@media only screen and (max-width: 543px) {
    .enumerated-item { width: 100%; }
    
}