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

:root {
    --header-bg: #090974; /* Cor do cabeçalho atualizada */
    --primary-color: #ffffff; /* Texto branco */
    --primary-dark: #f0f0f0; /* Tom mais claro para hover */
    --secondary-color: #ff6b00; /* Laranja para destaques */
    --accent-color: #ff8c00; /* Laranja mais claro para efeitos */
    --text-color: #ffffff; /* Texto branco */
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.btn-secondary:hover {
    background-color: var(--header-bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 10px 0;
    color: var(--white);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

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

/* Estilo para o número de telefone no cabeçalho */
.phone-number .phone-link {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.phone-number .phone-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.phone-number .phone-link:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ajuste para dispositivos móveis */
@media (max-width: 992px) {
    .phone-number {
        display: none;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    height: 70px; /* Altura fixa para o cabeçalho */
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    margin-right: auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    border-radius: 4px;
    margin-right: 15px;
}

.logo h1 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.logo span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1em;
    display: inline;
    text-shadow: none;
}

/* Navegação */
.nav {
    margin-left: 0;
    margin-right: 30px;
}
.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav li {
    margin: 0 12px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 15px 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav a:not(.btn):hover {
    opacity: 1;
    color: var(--accent-color);
}
.nav a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

.nav a.active:not(.btn)::after {
    width: 100%;
}

/* Botão WhatsApp */
.whatsapp-btn {
    margin-left: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.whatsapp-btn .btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 44px; /* Altura mínima para acessibilidade */
}

.whatsapp-btn .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

/* Menu Toggle */
.menu-toggle {
    display: none; /* Escondido por padrão, será mostrado em telas menores */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.menu-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Efeito de animação quando o menu está ativo */
.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Estilos para telas menores que 992px */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    /* Esconder a navegação principal em telas menores */
    .nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--header-bg);
        padding: 100px 20px 40px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin: 0;
    }
    
    .nav li {
        width: 100%;
        margin: 5px 0;
    }
    
    .nav a {
        display: block;
        padding: 12px 15px;
        width: 100%;
        border-radius: 4px;
        transition: background-color 0.3s;
    }
    
    .nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .whatsapp-btn {
        margin: 20px 0 0;
        width: 100%;
        padding: 0 15px;
    }
    
    .whatsapp-btn .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

/* Estilos para telas menores que 768px */
@media (max-width: 768px) {
    .nav {
        max-width: 300px;
        padding: 80px 20px 40px;
    }
    
    .header .container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .whatsapp-btn {
        margin: 20px 0 0;
        width: 100%;
        padding: 0 15px;
    }
    
    .whatsapp-btn .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    /* Estilos do menu móvel já estão definidos acima */
}

.menu-icon {
    display: inline-block;
    width: 30px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.menu-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-line:nth-child(1) {
    top: 0;
}

.menu-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-line:nth-child(3) {
    bottom: 0;
}

/* Estilo quando o menu está ativo */
.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Esconder texto para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== RESPONSIVO ===== */

/* Tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    /* Seção Sobre Nós */
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    /* Seção de Tamanhos */
    .sizes-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sizes-image {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Tablets Pequenos */
@media (max-width: 768px) {
    /* Header */
    .header .container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--header-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 0;
        transition: 0.3s;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav a {
        padding: 15px 0;
        justify-content: center;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Seção de Recursos */
    .features {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    /* Seção de Tamanhos */
    .sizes {
        padding: 60px 0;
    }
    
    .sizes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .size-card {
        padding: 20px 15px;
    }
    
    /* Rodapé */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-contact ul,
    .footer-social .social-links {
        justify-content: center;
    }
    
    .nav li {
        margin: 10px 0;
    }
    
    .whatsapp-btn {
        margin-left: 15px;
    }
}

/* Dispositivos Móveis */
@media (max-width: 480px) {
    /* Header */
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    /* Seções */
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Botões */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Seção Sobre Nós */
    .about {
        padding: 50px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Rodapé */
    .footer {
        text-align: center;
        padding: 40px 0 20px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Tamanhos das Caçambas */
    .size-card h3 {
        font-size: 1.5rem;
    }
    
    .size-card p {
        font-size: 0.9rem;
    }
}

/* Dispositivos Muito Pequenos */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        padding: 12px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .whatsapp-btn .btn span {
        display: none;
    }
    
    .whatsapp-btn .btn {
        padding: 8px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .whatsapp-btn .btn i {
        margin: 0;
    }
}

/* Estilos para o menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Estilo para o header ao rolar */
.header.scrolled {
    padding: 5px 0;
    background-color: rgba(9, 9, 116, 0.95);
    backdrop-filter: blur(5px);
}

/* Evitar rolagem quando o menu estiver aberto */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    background: #2c3e50; /* Cor de fallback */
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
}

.hero-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 16px;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    padding: 0 0 15px 0;
    color: #fff;
    letter-spacing: -0.2px;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin: 0 auto 30px;
    max-width: 700px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.1px;
}

/* Estilo base para todos os botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    cursor: pointer;
}

/* Estilo para o botão do WhatsApp no header */
.whatsapp-btn .btn {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.whatsapp-btn .btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.4);
}

/* Estilo para o botão do hero */
.btn-hero {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 15px 0;
}

.btn-hero:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

/* Ajuste para os ícones dentro dos botões */
.btn i {
    font-size: 1.2em;
    line-height: 1;
    margin-right: 5px;
}

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.phone-link, 
.whatsapp-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-link:hover,
.whatsapp-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.divider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .hero-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .divider {
        display: none;
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav ul {
        margin: 15px 0;
    }
    
    .nav ul li {
        margin: 0 10px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Seção Diferenciais */
.features {
    padding: 70px 0 80px;
    background: white; /* Fundo branco puro */
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title span {
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--header-bg); /* Usando a cor azul do cabeçalho */
    transition: height 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover:before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(9, 9, 116, 0.1); /* Azul com transparência */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--header-bg); /* Usando a cor azul do cabeçalho */
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: white;
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

/* Responsivo */
@media (max-width: 1024px) {
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Estilos do Rodapé */
.footer {
    background-color: var(--header-bg);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* Responsivo para o logo no rodapé */
@media (max-width: 1024px) {
    .footer-logo h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-logo h3 {
        font-size: 1.3rem;
    }
}

.footer-logo p {
    color: #ddd;
    max-width: 250px;
    line-height: 1.6;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-contact h4, 
.footer-social h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #ddd;
}

.footer-contact ul li i {
    color: var(--white);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone {
    color: #ddd !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-phone:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

.footer-contact ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--header-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Estilos para o botão de CTA na seção de diferenciais */
.features-cta {
    grid-column: 1 / -1; /* Faz o container ocupar todas as colunas do grid */
    text-align: center;
    margin: 50px auto 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.features-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px; /* Bordas mais arredondadas */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    min-width: 280px;
    max-width: 100%;
    background-color: var(--header-bg); /* Cor de fundo azul */
    color: white; /* Cor do texto branco */
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.features-cta .btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.features-cta .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Seção de Recursos */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Seção Sobre Nós */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--header-bg);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.about-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: #444;
    font-weight: 500;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
}

/* Seção de Tamanhos */
.sizes {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sizes .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sizes .section-header h2 {
    font-size: 2.2rem;
    color: var(--header-bg);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sizes .section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.sizes-content {
    display: flex;
    align-items: flex-start; /* Alinhar no topo para evitar cortes */
    gap: 40px;
    margin-top: 40px;
    min-height: auto; /* Removendo altura fixa */
}

.sizes-grid {
    flex: 0.5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 100%;
    align-content: flex-start; /* Alinhar itens no topo */
}

.sizes-image {
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sizes-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.size-card {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
    box-sizing: border-box;
}

.size-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.size-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(9, 9, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--header-bg);
    transition: all 0.3s ease;
    flex-shrink: 0; /* Impede que o ícone diminua */
}

.size-card:hover .size-icon {
    background: var(--header-bg);
    color: white;
}

.size-card h3 {
    font-size: 1.8rem;
    color: var(--header-bg);
    margin-bottom: 15px;
}

.size-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Estilo do botão CTA da seção de tamanhos */
.sizes-cta {
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

.sizes-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--header-bg);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(9, 9, 116, 0.2);
    border: 2px solid var(--header-bg);
    cursor: pointer;
    font-size: 1.1rem;
}

.sizes-cta .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 123, 0, 0.25);
}

.sizes-cta .btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.sizes-cta .btn:hover i {
    transform: scale(1.1);
}

/* Responsividade da seção de tamanhos */
@media (max-width: 992px) {
    .sizes-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sizes-grid, .sizes-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .size-card {
        min-height: auto;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .sizes {
        padding: 60px 0;
    }
    
    .sizes .section-header h2 {
        font-size: 1.8rem;
    }
    
    .sizes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        width: 100%;
        margin-bottom: 30px;
        padding: 0;
        text-align: center;
    }
    
    .footer-logo p,
    .footer-contact ul {
        margin: 0 auto;
        text-align: center;
    }
    
    .footer-contact h4,
    .footer-social h4 {
        text-align: center;
    }
    
    .footer-contact h4:after,
    .footer-social h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
}
