/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e31c1c;
    --primary-dark: #b01616;
    --secondary-color: #1a1a1a;
    --light-color: #f5f5f5;
    --gray-color: #777;
    --text-color: #333;
    --border-radius: 4px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: #0356A3;
    border: 2px solid #0356A3;
}

.btn-secondary:hover {
    background-color: #0356A3;
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f0f0;
}

/* Novo Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 100px;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1010;
    padding: 5px 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
}

.nav-list li {
    margin: 0 0 0 30px;
    position: relative;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: color 0.3s ease;
    display: block;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: flex;
    align-items: center;
}

.has-submenu > a i {
    margin-left: 5px;
    font-size: 18px;
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.has-submenu:hover > a i,
.has-submenu.active > a i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-submenu:hover .submenu,
.has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
    display: block;
    width: 100%;
}

.submenu a {
    display: block;
    padding: 8px 20px;
    font-weight: 400;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
}

.submenu a:hover {
    background-color: #0356A3;
    color: #FFFFFF;
}

.mobile-cta {
    display: none;
    width: 100%;
    padding: 10px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.btn-agendar {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-agendar:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: url('fundo.png') no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 42vh;
    position: relative;
    z-index: 2;
}

.hero-text-container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    text-align: center;
}

.hero p {
    font-size: 18px;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero .btn-primary {
    margin-top: auto;
    margin-bottom: 30px;
    padding: 12px 25px;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Seção de Destaque */
.highlight-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.highlight-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-text {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.highlight-text h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.highlight-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-color);
}

/* Chamada para Ação */
.cta {
    background-color: white;
    color: #0056b3;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-image {
    flex: 0 0 300px;
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 1000;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 20px;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #0056b3;
    font-weight: 700;
}

#user-city {
    display: inline-block;
    position: relative;
    font-weight: 700;
    padding: 0 2px;
    color: #0056b3;
}

#user-city:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 86, 179, 0.3);
}

#user-city.loading {
    min-width: 100px;
}

.loading-dots {
    display: inline-block;
    margin-left: 2px;
}

.loading-dots span {
    animation: loadingDots 1.4s infinite;
    opacity: 0;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDots {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cta .btn-light {
    font-size: 18px;
    padding: 12px 28px;
    min-width: 240px;
    background-color: #e60000;
    color: white;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta .btn-light:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.phone-cta {
    font-size: 20px;
    font-weight: 700;
}

/* FAQ e Sinais de Vazamento */
.faq-section {
    padding: 80px 0;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.leak-signs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
    list-style: none;
    padding: 0 20px;
}

.leak-signs li {
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leak-signs li:hover {
    transform: translateY(-5px);
}

.leak-signs i {
    font-size: 36px;
    color: #0356A3;
    margin-bottom: 15px;
}

.leak-signs p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.emotional-text {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    color: #d62828;
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.4;
    text-align: center;
}

/* Grade de Serviços */
.services {
    padding: 40px 0 80px;
    background-color: var(--light-color);
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: #0356A3;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 25px;
    color: var(--gray-color);
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* Estilo para card sem botão - ajuste para centralização vertical */
.service-card:first-child {
    justify-content: center;
}

.service-card:first-child p {
    margin-bottom: 0;
}

/* Seção Técnica */
.technical-section {
    padding: 80px 0;
    text-align: center;
}

.technical-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.tech-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
}

.tech-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
}

.tech-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--secondary-color);
}

.tech-card p {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Chamada Final para Ação */
.final-cta {
    background-color: #0356A3;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 28px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão com melhor contraste para o fundo */
.final-cta .btn-primary {
    background-color: #FFFFFF;
    color: #0356A3;
    border: none;
    font-weight: 700;
}

.final-cta .btn-primary:hover {
    background-color: #F0F0F0;
    color: #0356A3;
    transform: translateY(-2px);
}

/* Áreas Atendidas */
.areas-section {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.areas-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.area-card {
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.area-card h3 {
    color: var(--primary-color);
}

/* Galeria de Serviços Executados */
.gallery-section {
    padding: 80px 0 40px;
    text-align: center;
    background-color: var(--light-color);
    margin-bottom: 0;
}

.gallery-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    margin-top: -60px;
}

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

.gallery-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.gallery-caption p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Página de Desentupimento - Detalhes do Serviço */
.service-details {
    padding: 80px 0;
    text-align: center;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.detail-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-card h3 {
    margin-bottom: 15px;
}

.detail-card p {
    color: var(--gray-color);
}

.service-advantages {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-advantages h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.service-advantages ul {
    list-style: none;
}

.service-advantages li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-advantages i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

/* Divisor */
.page-divider {
    height: 1px;
    background-color: #e0e0e0;
    max-width: 1200px;
    margin: 0 auto 60px;
    width: 90%;
}

/* Rodapé */
.footer {
    background-color: white;
    color: var(--text-color);
    padding: 80px 0 20px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 992px) {
    .highlight-section {
        padding: 60px 0;
    }
    
    .tech-cards {
        gap: 20px;
        padding: 0 15px;
    }
    
    .tech-card {
        min-width: 250px;
        padding: 25px 15px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo {
        height: 80px;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .areas-section {
        margin-bottom: 40px;
    }
    
    .page-divider {
        margin-bottom: 40px;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta .container {
        gap: 30px;
    }

    .cta-image {
        flex: 0 0 250px;
        max-width: 250px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .leak-signs {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .emotional-text {
        font-size: 24px;
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 80px;
        padding: 10px 15px;
    }
    
    .logo {
        height: 60px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .header-logo {
        order: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-list li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-list a {
        padding: 15px 20px;
        width: 100%;
        border-radius: 0;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-text-container {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .hero h2 {
        font-size: 32px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .hero .btn-primary {
        margin-bottom: 30px;
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-section {
        margin-bottom: 30px;
    }
    
    .page-divider {
        margin-bottom: 30px;
        width: 95%;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-advantages {
        padding: 20px;
    }

    .technical-section {
        padding: 60px 0;
    }

    .technical-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .tech-cards {
        gap: 15px;
        padding: 0 10px;
    }

    .tech-card {
        min-width: 220px;
        padding: 20px 15px;
    }

    .tech-icon {
        font-size: 32px;
        height: 50px;
        width: 50px;
        margin-bottom: 12px;
    }

    .tech-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .tech-card p {
        font-size: 15px;
    }

    .cta {
        padding: 40px 0;
    }

    .cta .container {
        flex-direction: column;
        gap: 25px;
    }

    .cta-image {
        flex: 0 0 200px;
        max-width: 200px;
        margin-top: -120px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta .btn-light {
        font-size: 16px;
        padding: 10px 24px;
        min-width: 200px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .leak-signs {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .leak-signs li {
        padding: 15px;
    }

    .leak-signs i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .leak-signs p {
        font-size: 15px;
    }

    .emotional-text {
        font-size: 22px;
        margin-top: 30px;
    }

    .highlight-text h2 {
        margin-top: -40px;
    }

    .areas-section h2 {
        margin-top: -50px;
    }

    .gallery-section h2 {
        margin-top: -100px;
    }
}

@media (max-width: 576px) {
    .header-container {
        height: 70px;
        padding: 8px 12px;
    }

    .logo {
        height: 50px;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-text-container {
        padding: 20px 10px;
        margin-bottom: 25px;
    }

    .hero h2 {
        font-size: 28px;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 5px;
    }

    .technical-section {
        padding: 40px 0;
    }

    .technical-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .tech-cards {
        gap: 15px;
        padding: 0 10px;
    }

    .tech-card {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .tech-icon {
        font-size: 28px;
        height: 45px;
        width: 45px;
        margin-bottom: 10px;
    }

    .tech-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .tech-card p {
        font-size: 15px;
    }

    .cta {
        padding: 30px 0;
    }

    .cta-image {
        flex: 0 0 180px;
        max-width: 180px;
        margin-top: -120px;
    }

    .cta h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta .btn-light {
        font-size: 15px;
        padding: 8px 20px;
        min-width: 180px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .leak-signs {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 8px;
    }

    .leak-signs li {
        padding: 12px;
    }

    .leak-signs i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .leak-signs p {
        font-size: 14px;
    }

    .emotional-text {
        font-size: 20px;
        margin-top: 25px;
    }
}

@media (max-width: 425px) {
    .header-container {
        height: 60px;
        padding: 5px 10px;
    }

    .logo {
        height: 45px;
    }

    .hero-text-container {
        padding: 15px 8px;
    }

    .hero h2 {
        font-size: 24px;
        padding: 0 3px;
    }

    .hero p {
        font-size: 15px;
        padding: 0 3px;
    }
}

@media (max-width: 375px) {
    .header-container {
        height: 55px;
        padding: 5px 8px;
    }

    .logo {
        height: 40px;
    }

    .hero-text-container {
        padding: 12px 5px;
    }

    .hero h2 {
        font-size: 22px;
        padding: 0 2px;
    }

    .hero p {
        font-size: 14px;
        padding: 0 2px;
    }
}

@media (max-width: 320px) {
    .header-container {
        height: 50px;
        padding: 5px 8px;
    }

    .logo {
        height: 35px;
    }

    .hero-text-container {
        padding: 10px 5px;
    }

    .hero h2 {
        font-size: 20px;
        padding: 0 2px;
    }

    .hero p {
        font-size: 14px;
        padding: 0 2px;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent p {
    margin: 0;
    padding-right: 1rem;
    flex: 1;
}

.cookie-consent a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-btn.accept-btn {
    background-color: #e60000;
    color: white;
}

.cookie-btn.close-btn {
    background-color: #333;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .cookie-consent p {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos para a seção de vídeos adicionais */
.additional-videos {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.additional-videos.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para o botão "Ver Mais" */
.show-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto;
    text-align: center;
}

.show-more-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.show-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Ajustes responsivos para a seção de vídeos */
@media (max-width: 768px) {
    .video-comparison {
        flex-direction: column;
    }
    
    .video-container {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .show-more-btn {
        width: 100%;
        max-width: 300px;
    }
}

.show-more-container {
    margin: 2rem auto 0;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0 30px;
    }

    .services {
        padding: 30px 0 60px;
    }

    .show-more-container {
        margin: 1.5rem auto 0;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 40px 0 20px;
    }

    .services {
        padding: 20px 0 40px;
    }

    .show-more-container {
        margin: 1rem auto 0;
    }
}

.video-label {
    display: inline-block;
    font-weight: 700;
    font-size: 1.3em;
    margin-top: 10px;
}

.video-label.before {
    color: #e60000;
}

.video-label.after {
    color: #0056b3;
}

.video-description {
    margin-top: 20px;
    text-align: center;
}

.video-description p {
    font-weight: 700;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.4;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .video-label {
        font-size: 1.2em;
    }

    .video-description p {
        font-size: 1em;
    }
}

.video-comparison-wrapper + .video-comparison-wrapper .comparison-title {
    margin-top: 30px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .video-comparison-wrapper + .video-comparison-wrapper .comparison-title {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .video-comparison-wrapper + .video-comparison-wrapper .comparison-title {
        margin-top: 20px;
    }
}

/* Footer Mobile Adjustments */
@media screen and (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        max-width: 180px;
        height: auto;
    }

    .footer-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .footer-contact p {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-contact i {
        min-width: 20px;
        margin-right: 0.75rem;
        color: var(--primary-color);
    }

    .footer-contact p span {
        flex: 0 1 auto;
    }

    .footer-links,
    .footer-social {
        width: 100%;
        text-align: center;
    }

    .footer-links ul {
        justify-content: center;
    }

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

/* Video Comparison Styles */
.video-comparison {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.video-container {
    flex: 1;
    max-width: 800px; /* Increased from default size */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .video-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }

    .video-container {
        max-width: 100%;
    }
}

/* About Page Styles */
.about-intro {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.differentials-section {
    padding: 4rem 0;
    background-color: #fff;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.differential-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
}

.differential-icon {
    font-size: 2.5rem;
    color: #e60000;
    margin-bottom: 1rem;
}

.differential-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.differential-card p {
    color: #666;
    line-height: 1.6;
}

.mascot-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.mascot-content {
    max-width: 600px;
    margin: 0 auto;
}

.mascot-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.mascot-caption {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .differential-card {
        padding: 1.5rem;
    }

    .mascot-section {
        padding: 2rem 0;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.contact-details i {
    color: #e60000;
    font-size: 1.2rem;
    min-width: 24px;
}

.whatsapp-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* Mascot Section in Contact Page */
.contact-section .mascot-section {
    padding: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .mascot-content {
    max-width: 100%;
    text-align: center;
}

.contact-section .mascot-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.contact-section .mascot-caption {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .contact-section .mascot-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .whatsapp-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1.2rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
}

/* Estilos para a grade de etapas do serviço */
.service-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.step-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

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

/* Ajuste específico para a imagem de execução da solução */
.step-row:last-child .step-image img {
    object-position: center 30%; /* Ajusta a posição vertical para mostrar mais do teto */
    height: 350px; /* Aumenta a altura para mostrar mais contexto */
}

.step-image img:hover {
    transform: scale(1.02);
}

.step-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    margin-top: 10px;
    padding: 0 10px;
    line-height: 1.4;
    text-align: center;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .step-row {
        grid-template-columns: 1fr;
    }

    .step-image img {
        height: 250px;
    }
} 