/*
Theme Name: Steaque
Theme URI: http://steaque.themezinho.net/
Author: themezinho
Author URI: https://themezinho.net/
Description: Steak House and Coctail Bar
Version: 1.1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: steaque
Tags: blog, custom-logo, custom-menu, editor-style, featured-images, sticky-post, theme-options
*/

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
img{height: auto; max-width: 100%;}
iframe{ width: 100%; max-width: 100%;}


.alignleft {
	display: inline;
	float: left;
	margin-right: 50px;
}

.alignright {
	float:right; margin-left:50px; margin-top: 10px;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.screen-reader-text{
    display: block;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}


/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.bypostauthor{
	display: block;
}

section.icon-content-block{
	overflow: visible;
}

.wp-block-cover, .wp-block-cover-image {
	height:auto;
}
.blog-post .post-content .more-link{
	display: inline-block;
}

.navbar .contact-button {
    background: #019800;
	color: #FFF;
	padding: 4px 15px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	gap: 8px;
	transition: all 0.3s ease;
	margin-left: 20px;
}

.navbar .contact-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.navbar .contact-button i {
    font-size: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
    .navbar .contact-button {
        padding: 8px 15px;
        font-size: 10px;
        margin-left: 10px;
    }
}

@media screen and (max-width: 768px) {
    #contact-btn-zap {
        display: none !important;
    }
}

.sbi_follow_btn span {
	color: #fff !important;
}

/* ===== LAYOUT REESTRUTURADO: MISSÃO, VISÃO E VALORES ===== */
/* Usando classes específicas: coluna-missao, coluna-visao, coluna-valores */

/* Container principal - ajustar para nova estrutura */
.vc_row-fluid.justify-content-center:has(.coluna-missao) {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* DESKTOP: Missão em cima, Visão e Valores embaixo */
@media screen and (min-width: 769px) {
    /* MISSÃO - primeira coluna (100% da largura) */
    .coluna-missao {
        order: 1;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    /* VISÃO - segunda coluna (50% da largura) */
    .coluna-visao {
        order: 2;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
    }
    
    /* VALORES - terceira coluna (50% da largura) */
    .coluna-valores {
        order: 3;
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 15px;
    }
}

/* Estilização dos cards - APENAS para estas seções */
.coluna-missao .side-content,
.coluna-visao .side-content,
.coluna-valores .side-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 35px 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Alturas específicas para desktop */
@media screen and (min-width: 769px) {
    /* Missão - altura menor já que tem largura total */
    .coluna-missao .side-content {
        min-height: 200px;
    }
    
    /* Visão e Valores - altura maior para compensar largura menor */
    .coluna-visao .side-content,
    .coluna-valores .side-content {
        min-height: 280px;
    }
}

/* Efeito hover nos cards - APENAS MVV */
.coluna-missao .side-content:hover,
.coluna-visao .side-content:hover,
.coluna-valores .side-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Títulos - APENAS MVV */
.coluna-missao .side-content h3,
.coluna-visao .side-content h3,
.coluna-valores .side-content h3 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 25px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

/* Título da Missão - ligeiramente menor no desktop */
@media screen and (min-width: 769px) {
    .coluna-missao .side-content h3 {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }
}

/* Linha decorativa embaixo do título - APENAS MVV */
.coluna-missao .side-content h3::after,
.coluna-visao .side-content h3::after,
.coluna-valores .side-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

/* Texto dos parágrafos - APENAS MVV */
.coluna-missao .side-content p,
.coluna-visao .side-content p,
.coluna-valores .side-content p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #f8f8f8 !important;
    text-align: justify;
    margin-bottom: 0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
    align-items: center;
    padding: 0 !important;
}

/* Texto da Missão - ajustar para layout horizontal */
@media screen and (min-width: 769px) {
    .coluna-missao .side-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: center;
    }
}

/* Ícones antes dos títulos - APENAS MVV */
.coluna-missao .side-content h3:before,
.coluna-visao .side-content h3:before,
.coluna-valores .side-content h3:before {
    content: "" !important;
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    animation: iconPulse 3s infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Ícones específicos com imagens */
.coluna-missao .side-content h3:before {
    background-image: url('https://premiumpescadosthe.com.br/wp-content/uploads/2025/07/icon-peixe.png');
}

.coluna-visao .side-content h3:before {
    background-image: url('https://premiumpescadosthe.com.br/wp-content/uploads/2025/07/icon-peixe.png');
}

.coluna-valores .side-content h3:before {
    background-image: url('https://premiumpescadosthe.com.br/wp-content/uploads/2025/07/icon-peixe.png');
}

/* Efeito hover nos ícones */
.coluna-missao .side-content:hover h3:before,
.coluna-visao .side-content:hover h3:before,
.coluna-valores .side-content:hover h3:before {
    transform: scale(1.1);
    opacity: 1;
}

/* Animação dos ícones */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Estilização específica para VALORES */
.coluna-valores .side-content p {
    text-align: left !important;
    display: block !important;
}

/* MOBILE: Layout empilhado vertical */
@media screen and (max-width: 768px) {
    .coluna-missao,
    .coluna-visao,
    .coluna-valores {
        order: initial !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 25px;
    }
    
    .coluna-missao .side-content,
    .coluna-visao .side-content,
    .coluna-valores .side-content {
        min-height: auto !important;
        max-height: none !important;
        padding: 25px 20px;
    }
    
    .coluna-missao .side-content h3,
    .coluna-visao .side-content h3,
    .coluna-valores .side-content h3 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
    
    .coluna-missao .side-content p,
    .coluna-visao .side-content p,
    .coluna-valores .side-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }
    
    .coluna-missao .side-content h3:before,
    .coluna-visao .side-content h3:before,
    .coluna-valores .side-content h3:before {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .coluna-missao .side-content,
    .coluna-visao .side-content,
    .coluna-valores .side-content {
        padding: 20px 15px;
    }
    
    .coluna-missao .side-content h3,
    .coluna-visao .side-content h3,
    .coluna-valores .side-content h3 {
        font-size: 1.6rem !important;
    }
    
    .coluna-missao .side-content p,
    .coluna-visao .side-content p,
    .coluna-valores .side-content p {
        font-size: 0.95rem !important;
    }
    
    .coluna-missao .side-content h3:before,
    .coluna-visao .side-content h3:before,
    .coluna-valores .side-content h3:before {
        width: 45px;
        height: 45px;
    }
}

/* Animação de entrada - APENAS MVV */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coluna-missao .side-content.wow.fadeInUp,
.coluna-visao .side-content.wow.fadeInUp,
.coluna-valores .side-content.wow.fadeInUp {
    animation: slideInUp 0.8s ease-out;
}