/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Marca Ferrocorte */
    --primary-blue: #001f5c;
    --secondary-blue: #003087;
    --light-blue: #0066cc;
    --dark-blue: #00132d;
    --yellow: #ffc107;
    --orange: #fc8101;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    /* Tipografia */
    --font-main: 'Poppins', sans-serif;
    /* Espaçamentos */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-main);
}

/* ========================================
   HEADER
======================================== */
.top-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.header-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.logo {
    position: relative;
    width: 150px;
    height: 80px; /* Altura do container para centralização */
}

.logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 150px;
    height: auto;
}

.btn-call {
    background: var(--yellow);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 200px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 45deg, transparent, rgba(255, 255, 255, 0.3), transparent );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

.btn-call:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
    animation-play-state: paused;
}

.btn-call i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.btn-call .label {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    position: relative;
    z-index: 1;
}

.btn-call strong {
    font-size: 1.1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.btn-call div {
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 193, 7, 0.8), 0 0 30px rgba(255, 193, 7, 0.4); }
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* ========================================
   HERO SECTION - SLIDER
======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 500px;
}

.hero-slide-1 {
    background: linear-gradient(135deg, #0066cc 0%, #003087 50%, var(--primary-blue) 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #003d82 0%, #001f5c 100%);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 500px;
    padding: var(--spacing-xl) 0;
    gap: var(--spacing-lg);
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    text-align: center;
}

.hero-divider {
    width: 120px;
    height: 4px;
    background: var(--yellow);
    margin: var(--spacing-md) auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.hero-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    justify-content: center;
}

.badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 0;
    max-width: 200px;
}

.badge-item i {
    font-size: 2rem;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Navegação do Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    opacity: 0.8;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--yellow);
}

/* ========================================
   SECTION TITLE
======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 4px;
    background: var(--primary-blue);
}

.section-title::before {
    left: 0;
    width: 35%;
}

.section-title::after {
    right: 0;
    width: 35%;
}

/* ========================================
   MACRO CATEGORIES SECTION
======================================== */
.macro-categories-section {
    padding: var(--spacing-xxl) 0;
    background: var(--light-gray);
}

.macro-category-card {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.macro-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 31, 92, 0.2);
    border-color: var(--orange);
}

.macro-category-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-list {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-md);
    padding: 0;
}

.category-list li {
    padding: var(--spacing-xs) 0;
    color: var(--gray);
    font-size: 0.9rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* ========================================
   SEGMENTOS CAROUSEL
======================================== */
.segmentosSwiper {
    padding: 0 50px 50px;
    position: relative;
    overflow: visible;
}

.segmentosSwiper .swiper-wrapper {
    padding-bottom: 10px;
}

.segmentosSwiper .swiper-slide {
    height: auto;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding-top: 8px;
}

.segmentosSwiper .macro-category-card {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.category-image {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.macro-category-card:hover .category-image img {
    transform: scale(1.1);
}

.segmentosSwiper .category-list {
    flex-grow: 1;
}

.segmentosSwiper .swiper-button-next,
.segmentosSwiper .swiper-button-prev {
    color: var(--primary-blue);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.segmentosSwiper .swiper-button-next:after,
.segmentosSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.segmentosSwiper .swiper-button-next:hover,
.segmentosSwiper .swiper-button-prev:hover {
    background: var(--orange);
    color: var(--white);
}

.segmentosSwiper .swiper-pagination-bullet {
    background: var(--primary-blue);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.segmentosSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--orange);
}

.segmentosSwiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    z-index: 0;
}

.macro-category-card {
    position: relative;
    z-index: 1;
}

/* ========================================
   CORTE E DOBRA SECTION
======================================== */
.corte-dobra-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.corte-dobra-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxl);
}

.corte-dobra-text-wrapper {
    flex: 1;
}

/* Esconde a imagem de referência do desktop por padrão */
.corte-dobra-media-desktop {
    flex: 0 0 450px;
    display: none; /* Escondido no mobile */
}

.corte-dobra-media-desktop img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* A imagem que fica dentro do texto no mobile */
.corte-dobra-text-wrapper .corte-dobra-media {
    display: block; /* Visível no mobile */
    width: 100%;
    max-width: 500px;
    margin: var(--spacing-lg) auto; /* Centraliza e adiciona espaço */
}

.corte-dobra-text-wrapper .corte-dobra-media img {
    width: 100%;
    border-radius: 12px;
}

/* --- Layout Desktop (A partir de 992px) --- */
@media (min-width: 992px) {
    /* No desktop, escondemos a imagem de dentro do texto */
    .corte-dobra-text-wrapper .corte-dobra-media {
        display: none;
    }

    /* E mostramos a imagem de referência que fica do lado direito */
    .corte-dobra-media-desktop {
        display: block;
    }
}


/* --- Ajustes de alinhamento no mobile (Até 991px) --- */
@media (max-width: 991px) {
    .corte-dobra-content {
        flex-direction: column;
    }
    .corte-dobra-section .section-title {
        text-align: center;
    }
    .corte-dobra-text-wrapper {
        width: 100%;
        text-align: center;
    }
    .btn-corte-dobra {
        align-self: center; /* Centraliza o botão */
    }
    .corte-dobra-features {
        text-align: left; /* Mantém o texto dos cards alinhado à esquerda */
    }
}

.corte-dobra-section .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.corte-dobra-section .section-title::before,
.corte-dobra-section .section-title::after {
    background: var(--yellow);
}

.corte-dobra-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.corte-dobra-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-corte-dobra {
    background: var(--yellow);
    color: var(--primary-blue);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    align-self: center; /* Centraliza o botão */
}

.btn-corte-dobra:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.corte-dobra-media {
    flex: 0 0 450px;
    display: block; /* Garante que ela seja visível por padrão */
}

.corte-dobra-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ========================================
   PRODUCTS SECTION
======================================== */
.products-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 31, 92, 0.15);
    border-color: var(--primary-blue);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-product {
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-product:hover {
    background: var(--secondary-blue);
    transform: scale(1.05);
}

.products-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 1.1rem;
}

.products-note::before {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--yellow);
    margin: var(--spacing-md) auto var(--spacing-sm);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .products-note {
        font-size: 1.25rem;
    }
}

/* ========================================
   PROMO BANNER
======================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    padding: var(--spacing-xl) 0;
    color: var(--white);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
}

.banner-left h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.banner-left p {
    font-size: 1.2rem;
}

.banner-right {
    text-align: center;
}

.promo-banner .highlight-orange {
    color: var(--orange);
}

.banner-right .banner-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    opacity: 0.95;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    text-align: left;
}

.map-item {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: var(--spacing-md);
    backdrop-filter: blur(6px);
}

.map-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.map-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
}

.footer-logo p {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.footer-slogan {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-left .social-links {
    margin-top: var(--spacing-sm);
}

.footer-right {
    display: flex;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

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

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-contacts i {
    color: var(--yellow);
}

.footer-contacts span {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
    animation-play-state: paused;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: var(--spacing-xl) var(--spacing-sm);
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .heroSwiper {
        height: auto;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .banner-left h2 {
        font-size: 2rem;
    }
    
    .banner-right .banner-logo {
        margin-top: 0;
        max-width: 160px;
    }

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

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

    .footer-contacts li {
        justify-content: center;
    }

    .segmentosSwiper {
        padding: 0 40px 40px;
    }

    /* CORTE E DOBRA RESPONSIVE */
    .corte-dobra-content {
        flex-direction: column;
    }
    .corte-dobra-section .section-title {
        text-align: center;
    }
    .corte-dobra-text-wrapper {
        width: 100%;
        order: 1; /* Bloco de texto vem primeiro */
    }
    .corte-dobra-description {
        order: 1;
    }
    .corte-dobra-media {
        order: 2; /* Imagem vem em segundo */
        width: 100%;
        max-width: 500px;
        margin: var(--spacing-lg) 0;
    }
    .corte-dobra-features {
        order: 3; /* Cards de features em terceiro */
    }
    .btn-corte-dobra {
        order: 4; /* Botão por último */
        align-self: center;
    }
    .corte-dobra-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-cta {
        flex-direction: column;
        gap: 8px;
    }

    .btn-call {
        padding: 8px 12px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-call i {
        font-size: 1.2rem;
    }

    .btn-call .label {
        font-size: 0.6rem;
    }

    .btn-call strong {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .social-links,
    .footer-left .social-links {
        justify-content: center;
        width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .hero-badges .badge-item {
        height: 88px;
        justify-content: center;
    }

    .hero-badges .badge-item i {
        font-size: 1.8rem;
    }

    .hero-badges .badge-item span {
        font-size: 0.9rem;
        text-align: center;
    }

    .segmentosSwiper {
        padding: 0 16px 40px;
        overflow: visible;
    }

    .segmentosSwiper .swiper-slide {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .btn-call {
        padding: 6px 10px;
        gap: 8px;
    }

    .btn-call i {
        font-size: 1rem;
    }

    .btn-call .label {
        font-size: 0.55rem;
    }

    .btn-call strong {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .segmentosSwiper {
        padding: 0 12px 40px;
        overflow: visible;
    }

    .segmentosSwiper .swiper-button-next,
    .segmentosSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .segmentosSwiper .swiper-button-next:after,
    .segmentosSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}
