/*
Theme Name: Rafael Lorentz
Theme URI: https://rafaellorentz.com
Author: Rafael Lorentz
Author URI: https://rafaellorentz.com
Description: Tema simples one page para portfolio
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rafaellorentz
*/

/* Reset básico */


/* ─── Contact Form 7 — compatibilidade de estilos ─── */

/* Remove estilos padrão do CF7 */
.wpcf7-form {
    margin: 0;
    padding: 0;
}

/* Inputs e textarea gerados pelo CF7 herdam os estilos do tema */
.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrapper .wpcf7-form-control-wrap input,
.contact-form-wrapper .wpcf7-form-control-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form-wrapper .wpcf7-form-control-wrap input:focus,
.contact-form-wrapper .wpcf7-form-control-wrap textarea:focus {
    outline: none;
    border-color: #0D335D;
}

.contact-form-wrapper .wpcf7-form-control-wrap textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botão submit gerado pelo CF7 */
.contact-form-wrapper input[type="submit"].contact-submit,
.contact-form-wrapper .wpcf7-submit.contact-submit {
    width: 100%;
    padding: 16px;
    background: #0D335D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: Georgia, serif;
    display: block;
    text-align: center;
}

.contact-form-wrapper input[type="submit"].contact-submit:hover,
.contact-form-wrapper .wpcf7-submit.contact-submit:hover {
    background: #0a2847;
}

/* Mensagens de validação e erro do CF7 */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}

.wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background: #eafbea;
    color: #1e7e1e;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    background: #fef0f0;
    color: #c0392b;
}

.wpcf7-form-control-wrap input.wpcf7-not-valid,
.wpcf7-form-control-wrap textarea.wpcf7-not-valid {
    border-color: #c0392b;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.site-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 2px;
    min-width: 0;
    flex-shrink: 1;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-subtitle {
    font-size: 10px;
    color: #333;
    letter-spacing: 1.5px;
    opacity: 0.8;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0D335D;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-switcher:hover {
    background: #f8f9fa;
    border-color: #333;
}

.language-icon {
    font-size: 16px;
}

/* Header Actions (language + hamburger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f8f9fa;
    border-color: #333;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, border-top 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
    padding: 15px 20px 20px;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: #0D335D;
}

@media (max-width: 992px) {
    .site-nav {
        display: none;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }
    
    .header-container {
        gap: 15px;
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 13px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .brand-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .language-switcher {
        padding: 5px 10px;
        font-size: 12px;
        gap: 4px;
        flex-shrink: 0;
    }
    
    .language-icon {
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 10px;
        padding: 0 10px;
    }
    
    .brand-name {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
    
    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .language-switcher {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .language-text {
        display: none;
    }
    
    .language-icon {
        font-size: 16px;
    }
    
    .mobile-nav-link {
        font-size: 15px;
        padding: 12px 0;
    }
}

/* Main Content */
.site-content {
    margin-top: 80px;
    min-height: 100vh;
}

.container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: -80px;
    padding-top: 80px;
}

/* Imagem de fundo para português */
.lang-pt .hero-section {
    background-image: url('https://dev2.midiasim.net.br/rafaellorentz/wp-content/uploads/2026/02/Image-Infraestrutura-de-telecomunicacoes.jpg');
}

/* Imagem de fundo para inglês */
.lang-en .hero-section {
    background-image: url('https://dev2.midiasim.net.br/rafaellorentz/wp-content/uploads/2026/02/Image-Modern-architecture-building.png');
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(13, 51, 93, 0.77) 0%, rgba(13, 51, 93, 0.60) 50%, rgba(13, 51, 93, 0.34) 100%);
}

@media (max-width: 768px) {
    .hero-section::before {
        background: rgba(13, 51, 93, 0.75);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
    text-align: left;
    margin: 0 auto;
    padding: 0;
}

.hero-section h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #fff;
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-button {
    display: inline-block;
    padding: 16px 32px;
    background: #FFF;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #FFF;
}

.hero-button:hover {
    background: transparent;
    color: #FFF;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        background-position: center right;
    }
    
    .hero-section .container {
        padding: 0 25px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.25;
    }
    
    .hero-section h1 br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
        line-height: 1.6;
        opacity: 0.95;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 90px;
        padding-bottom: 50px;
    }
    
    .hero-section .container {
        padding: 0 20px;
    }
    
    .hero-section h1 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .container {
        padding: 30px 15px;
    }
}

/* Footer */
.site-footer {
    background: #0D335D;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
}

.footer-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.9;
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-copyright {
    font-size: 13px;
    color: #fff;
    margin: 0;
    opacity: 0.9;
}

.footer-oab {
    font-size: 13px;
    color: #fff;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

/* Seções */
section {
    padding: 60px 0;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

section:nth-child(even) {
    background: #f8f9fa;
}

/* About Section */
.about-section {
    background: #fff;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-intro h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Contadores */
.about-stats {
    display: flex;
    gap: 40px;
    padding: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* Expertise e Trajetória */
.about-expertise h3,
.about-trajectory h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.about-expertise p,
.about-trajectory p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

/* Areas Section */
.areas-section {
    background: #f8f9fa;
}

.areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.areas-subtitle {
    font-size: 18px;
    color: #666;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #333;
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.area-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.area-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.area-link:hover {
    color: #666;
}

@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-header h2 {
        font-size: 32px;
    }
}

/* Diferenciais Section */
.diferenciais-section {
    background: #fff;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 60px;
}

.diferenciais-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.diferenciais-subtitle {
    font-size: 18px;
    color: #666;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.diferencial-icon {
    width: 50px;
    height: 50px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
}

.diferencial-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.diferencial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}

@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .diferenciais-header h2 {
        font-size: 32px;
    }
}

/* Servico Section */
.servico-section {
    background: #f8f9fa;
}

.servico-header {
    text-align: center;
    margin-bottom: 60px;
}

.servico-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

.servico-badge svg {
    width: 16px;
    height: 16px;
}

.servico-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.servico-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.servico-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.servico-image {
    border-radius: 12px;
    overflow: hidden;
}

.servico-image img {
    width: 100%;
    height: auto;
    display: block;
}

.servico-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.servico-button {
    display: inline-block;
    padding: 14px 28px;
    background: #e5e7eb;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.servico-button:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .servico-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servico-header h2 {
        font-size: 32px;
    }
}

/* Areas Images Section - Full Width */
.areas-images-section {
    padding: 0;
    min-height: auto;
}

.areas-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    overflow: hidden;
}

.area-image-card {
    position: relative;
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.area-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inherit;
    transition: transform 0.3s ease;
    z-index: 0;
}

.area-image-card:hover::before {
    transform: scale(1.05);
}

.area-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0D335D99;
    z-index: 1;
}

.area-image-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-align: start;
    padding: 30px;
}

@media (max-width: 992px) {
    .areas-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-images-grid {
        grid-template-columns: 1fr;
    }
    
    .area-image-card {
        height: 300px;
    }
    
    .area-image-title {
        font-size: 24px;
    }
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-family: Georgia, serif;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #666;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 15px;
    }
}

/* Blog Section */
.blog-section {
    background: #f8f9fa;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.blog-subtitle {
    font-size: 18px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;    
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blog-card-date svg {
    width: 16px;
    height: 16px;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-card-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    color: #0D335D;
}

.blog-more {
    text-align: center;
}

.blog-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0D335D;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-more-button:hover {
    background: #0a2847;
    transform: translateY(-2px);
}

.blog-more-button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header h2 {
        font-size: 32px;
    }
}

/* Blog Archive Page */
.blog-archive-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    padding-top: 80px;
}

/* Imagem de fundo para português */
.lang-pt .blog-archive-hero {
    background-image: url('https://dev2.midiasim.net.br/rafaellorentz/wp-content/uploads/2026/02/Image-Infraestrutura-de-telecomunicacoes.jpg');
}

/* Imagem de fundo para inglês */
.lang-en .blog-archive-hero {
    background-image: url('https://dev2.midiasim.net.br/rafaellorentz/wp-content/uploads/2026/02/Image-Modern-architecture-building.png');
}

.blog-archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(13, 51, 93, 0.77) 0%, rgba(13, 51, 93, 0.60) 50%, rgba(13, 51, 93, 0.34) 100%);
    z-index: 1;
}

.blog-archive-hero .container {
    position: relative;
    z-index: 2;
}

.blog-archive-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.blog-archive-subtitle {
    font-size: 18px;
    color: #fff;
}

.blog-archive-section {
    background: #f8f9fa;
    min-height: 100vh;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-pagination .page-numbers {
    padding: 10px 16px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: #0D335D;
    color: #fff;
    border-color: #0D335D;
}

.blog-pagination .dots {
    padding: 10px;
    color: #666;
}

.blog-no-posts {
    text-align: center;
    padding: 80px 20px;
}

.blog-no-posts h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.blog-no-posts p {
    font-size: 18px;
    color: #666;
}

@media (max-width: 992px) {
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-archive-hero h1 {
        font-size: 36px;
    }
}

/* Single Post Page */
.single-post-hero {
    position: relative;
    background: #0D335D;
    padding: 120px 0 60px;
    color: #fff;
    margin-top: -80px;
    padding-top: 80px;
}

.single-post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.single-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(13, 51, 93, 0.85) 0%, rgba(13, 51, 93, 0.70) 50%, rgba(13, 51, 93, 0.50) 100%);
}

.single-post-hero .container {
    position: relative;
    z-index: 1;
}

.single-post-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.single-post-category {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.single-post-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
    max-width: 900px;
}

.single-post-content-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.single-post-article {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
}

.single-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.single-post-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0D335D;
}

.single-post-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.single-post-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid #0D335D;
    font-style: italic;
}

.single-post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.single-post-tags strong {
    color: #333;
    margin-right: 10px;
}

.post-tag {
    padding: 6px 14px;
    background: #f0f4f8;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: #0D335D;
    color: #fff;
}

.single-post-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.single-post-share strong {
    display: block;
    margin-bottom: 15px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-button svg {
    width: 20px;
    height: 20px;
}

.share-facebook {
    background: #1877F2;
    color: #fff;
}

.share-facebook:hover {
    background: #145dbf;
}

.share-twitter {
    background: #1DA1F2;
    color: #fff;
}

.share-twitter:hover {
    background: #0d8bd9;
}

.share-linkedin {
    background: #0A66C2;
    color: #fff;
}

.share-linkedin:hover {
    background: #084f96;
}

.share-whatsapp {
    background: #25D366;
    color: #fff;
}

.share-whatsapp:hover {
    background: #1da851;
}

/* Sidebar */
.single-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.sidebar-author .author-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.sidebar-author .author-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.author-contact {
    display: inline-block;
    padding: 10px 20px;
    background: #0D335D;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.author-contact:hover {
    background: #0a2847;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    gap: 15px;
}

.related-post-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content time {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.related-post-content h4 {
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

.related-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #0D335D;
}

/* Post Navigation */
.single-post-navigation {
    margin-top: 60px;
}

.post-nav-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.post-nav-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.3s ease;
}

.post-nav-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-nav-next {
    text-align: right;
}

.post-nav-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-nav-title {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-nav-title:hover {
    color: #0D335D;
}

@media (max-width: 992px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }
    
    .single-post-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .single-post-title {
        font-size: 32px;
    }
    
    .single-post-article {
        padding: 30px 20px;
    }
    
    .post-nav-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-nav-next {
        text-align: left;
    }
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    color: #666;
}

.contact-value {
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.contact-value:hover {
    color: #0D335D;
}

.contact-linkedin {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.contact-linkedin p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.linkedin-link {
    font-size: 15px;
    color: #0D335D;
    text-decoration: none;
    font-weight: 500;
}

.linkedin-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0D335D;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    padding: 16px;
    background: #0D335D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
    font-family: Georgia, serif;
}

.contact-submit:hover {
    background: #0a2847;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}
