/*
Theme Name: Samson
Theme URI: https://alk.com.br
Author: Alk Comunicação
Author URI: https://alk.com.br
Description: A Samson é uma empresa especializada em demolição, terraplenagem e serviços pesados, atuando com segurança, responsabilidade e excelência técnica em cada projeto. Nos acompanhe nas redes sociais.
Requires at least: 6.8.1
Tested up to: 6.8.1
Requires PHP: 7.4 ou superior
Version: 1.0
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/


:root{
    --color-primary:#505050;
    --color-primary-dark:#283D48;
    --color-primary-light:#eeeeee;
    --white:#ffffff;
    --orange:#C64938;
    --orange-light:#CE684A;
    --yellow:#ffd000;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    font-family:"Roboto", sans-serif;
    background-color:var(--color-primary-light);
}

/* NAV */
nav{
    background-color:var(--white);
    padding:25px 0;
    position:relative;
    z-index:10;
}

.container{
    width:80%;
    margin:0 auto;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-nav img{
    width:230px;
}

.menu{
    list-style:none;
}

.menu li{
    display:inline-block;
    margin-left:25px;
}

.menu li a{
    text-decoration:none;
    color:var(--color-primary);
    font-size:1.1em;
    position:relative;
    transition:color .3s;
}

.menu li a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background-color:var(--orange);
    transition:.3s;
}

.menu li a:hover{
    color:var(--orange);
}

.menu li a:hover::after{
    width:100%;
}

.btn-menu a{
    background-color:var(--orange);
    padding:15px 30px;
    border-radius:35px;
    color:var(--white)!important;
}

.btn-menu a:hover{
    background-color:var(--orange-light);
}

/* ÍCONES NAV */
.social-icons ul{
    list-style:none;
    display:flex;
    gap:15px;
}

.social-icons a{
    color:var(--color-primary);
    font-size:1.4em;
    transition:.3s;
}

.social-icons a:hover{
    color:var(--orange);
    transform:translateY(-2px);
}

/* MENU MOBILE */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background-color:var(--color-primary);
}

.menu-mobile{
    position:fixed;
    inset:0;
    background-color:var(--color-primary-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translateY(-100%);
    transition:.6s ease;
    z-index:9;
}

.menu-mobile.active{
    transform:translateY(0);
}

.menu-mobile ul{
    list-style:none;
    text-align:center;
}

.menu-mobile li{
    margin:22px 0;
}

.menu-mobile a{
    text-decoration:none;
    color:var(--white);
    font-size:2em;
}

.btn-mobile{
    background-color:var(--orange);
    padding:15px 40px;
    border-radius:40px;
}

/* HEADER */
header{
    position:relative;
    height:75vh;
    background:url(img/IMG_0056.PNG) center/cover no-repeat fixed;
    overflow:hidden;
}

header::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
}

/* PEDRAS */
#pedras-container{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:3;
}

.pedra{
    position:absolute;
    background-image:url(img/pedra.png);
    background-size:cover;
    opacity:.7;
    filter:blur(1px);
    border-radius:20%;
}

/* TEXTO */
.chamada-1{
    height:75vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.chamada-wrapper{
    position:relative;
    z-index:4;
    animation:fadeUp 1s ease forwards;
}

.chamada-1 h3{
    color:var(--white);
    font-size:4em;
    margin-bottom:25px;
}

.chamada-1 p{
    color:var(--white);
    font-size:1.4em;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background-color:var(--orange);
    color:var(--white);
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:1.3em;
    transition:.3s;
}

.btn:hover{
    background-color:var(--orange-light);
    transform:translateY(-3px);
}

.highlight{
    color:var(--yellow);
}


footer{
    padding: 100px 0;
    background-color: var(--color-primary-dark);
}

.footer-wrapper {
    display: flex;
    gap: 50px;
    overflow: visible !important; 
}

.footer-wrapper .w-33:nth-child(2) {
    text-align: center;
}

.footer-wrapper .w-33:nth-child(2) ul li {
    line-height: 2;
}

.footer-wrapper .w-33:nth-child(2) ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.footer-wrapper .w-33:nth-child(2) ul li a:hover {
    color: var(--orange);
}

.w-33{
    flex:1;
}

.w-33 img{
    width:300px;
}

.w-33 h3{
    color:var(--color-primary-light);
    margin-bottom:25px;
}

.w-33 ul{
    list-style:none;
}

.w-33 ul a{
    text-decoration:none;
    color:var(--white);
    transition:.3s;
}

.w-33 ul a:hover{
    color:var(--yellow);
}

.w-33 p{
    color:var(--white);
    line-height:1.8;
    margin-bottom:20px;
}

.icons-footer{
    display:flex;
    gap:15px;
}

.icons-footer a{
    color:var(--white);
    font-size:1.8em;
    transition:.3s;
}

.icons-footer a:hover{
    color:var(--orange);
}

.footer-info {
    margin-bottom: 25px;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95em;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-info i {
    color: var(--orange);
    font-size: 1em;
    min-width: 18px;
}

.footer-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--orange);
}

.footer-info .separator {
    opacity: 0.4;
    margin: 0 6px;
}

.footer-contact-column {
    position: relative;
    min-height: 250px; 
}

.footer-wrapper .w-33:last-child {
    position: relative; /* Isso prende a imagem dentro da coluna no Desktop */
}

.img-map-footer {
    display: block !important;
    position: absolute;
    right: -20px;    
    top: 50%;
    transform: translateY(-50%);
    margin-top: 15px; 
    width: 170px !important;
    height: auto;
    z-index: 10;
    pointer-events: none;
    opacity: 0.7;
}


.copy{
    margin-top: 50px;
    color: var(--white);
    text-align: center;
}

.copy p a{
    text-decoration: none;
    color: var(--yellow);
    transition:.3s;
}

.copy p a:hover{
  color: var(--orange);
}


/* ANIMAÇÃO */



@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVO */

@media(max-width:1296px){
    .menu,
    .social-icons{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }
}

@media(max-width:1024px){
   

    .footer-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .icons-footer{
        justify-content:center;
    }

    .img-map-footer {
        right: -20px;
        width: 150px;
    }
}

@media(max-width:768px){
    #pedras-container{
        display:none;
    }

    header{
        background-attachment:scroll;
    }

    .chamada-1 h3{
        font-size:2.2em;
    }

    .chamada-1 p{
        font-size:1.1em;
    }
    .footer-wrapper .w-33:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .img-map-footer {
        position: relative; /* No mobile ela vira um elemento comum abaixo dos ícones */
        top: auto;
        right: auto;
        transform: none;
        margin-top: 30px;
        width: 160px;
        opacity: 1;
    }
}


/*estilo elementor*/

.chanfro-box {
  border-radius: 0;
  clip-path: polygon(
    0 0,
    calc(100% - 25px) 0,
    100% 25px,
    100% 100%,
    0 100%
  );
}

.texto-limitado p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  line-clamp: 3;
  overflow: hidden;
}

/* Container geral */
.cf7-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Campos */
.cf7-field {
    margin-bottom: 16px;
}

.cf7-form input,
.cf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Altura do textarea */
.cf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Placeholder */
.cf7-form input::placeholder,
.cf7-form textarea::placeholder {
    color: #999;
}

/* Foco */
.cf7-form input:focus,
.cf7-form textarea:focus {
    border-color: #1C8E88;
    box-shadow: 0 0 0 2px rgba(28, 142, 136, 0.15);
}

/* Botão */
.cf7-form input[type="submit"] {
    background-color: var(--orange);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover botão */
.cf7-form input[type="submit"]:hover {
    background-color: var(--orange-light);
    transform: translateY(-1px);
}

/* Mensagens de erro */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #d63638;
    margin-top: 6px;
}

/* Mensagem de sucesso ou erro geral */
.wpcf7-response-output {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.cf7-form textarea {
    resize: none;
}

