:root {
    --bmw-blue: #0066b1;
    --bmw-dark: #0a0a0a;
    --bmw-light: #f5f5f5;
    --bmw-white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: var(--bmw-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: #000;
}

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

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

.logocontainer {
    width: 50px;
    height: 50px;
    background-color: var(--bmw-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 80px;
}

/* MENU PRINCIPAL */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 2.5rem;
}

.main-nav ul li a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav ul li a.agendar-revisao {
    color: #ff0000 !important;
}

.main-nav ul li a:hover {
    color: #cccccc;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #cccccc;
    transition: var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
	z-index: 9999;
}

/* Carro Section - CSS */
.principalagendamento {
    max-width: 880px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 160px;
    margin-bottom: -50px;	
}

.carro-section {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carro-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.carro-conteudo {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carro-conteudo h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
	text-align: center;
}

.carro-conteudo h2 span {
    color: #e74c3c;
}

.carro-conteudo p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
	text-align: center;
}

.carro-destaques {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
	justify-content: center;
}

.carro-destaque-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.carro-destaque-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.btn-agendar {
    display: block; /* muda de inline-block para block */
    margin: 0 auto; /* centraliza horizontalmente */
    /* mantém todas as outras propriedades */
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(to right, #c0392b, #a93226);
}

.btn-agendar:active {
    transform: translateY(1px);
}

.btn-agendar i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-agendar:hover i {
    transform: translateX(5px);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* CSS para o formulário de agendamento */
#agendamento {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 100px;
    margin-bottom: -40px;
}

#agendamento .cabecalho {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

#agendamento .titulo-principal {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#agendamento .destaque {
    color: #e63946;
    display: inline-block;
}

#agendamento .subtitulo {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

#agendamento .form-agendamento {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#agendamento .campo-formulario {
    display: flex;
    flex-direction: column;
}

#agendamento .campo-formulario label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

#agendamento .campo-formulario input,
#agendamento .campo-formulario select,
#agendamento .campo-formulario textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

#agendamento .campo-formulario input:focus,
#agendamento .campo-formulario select:focus,
#agendamento .campo-formulario textarea:focus {
    outline: none;
    border-color: #e63946;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

#agendamento .campo-formulario textarea {
    resize: vertical;
    min-height: 80px;
}

#agendamento .campo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
}

#agendamento .campo-checkbox input {
    margin-top: 5px;
    cursor: pointer;
}

#agendamento .campo-checkbox label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

#agendamento .botao-agendar {
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

#agendamento .botao-agendar:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

#agendamento .botao-agendar:active {
    transform: translateY(0);
}

#agendamento .botao-agendar:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#agendamento .observacao {
    margin-top: 15px;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

#agendamento .observacao p {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

#agendamento .observacao strong {
    color: #e63946;
}

#agendamento .status-mensagem {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

#agendamento .status-mensagem.sucesso {
    background-color: #e7f7ef;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    display: block;
}

#agendamento .status-mensagem.erro {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

#agendamento .status-mensagem.info {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
    display: block;
}

/* FOOTER */
footer {
    background-color: var(--bmw-dark) !important;
    color: var(--bmw-white) !important;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bmw-white);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
	text-decoration: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    background-image: none !important;
}

.footer-links li a:hover {
    color: var(--bmw-blue);
    padding-left: 5px;
	text-decoration: none !important;
    border-bottom: none !important;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
    width: 100%;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 150px;
        left: 0;
        width: 100%;
        background-color: #000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    
    /* Responsividade - Carro Section */
    .carro-section {
        flex-direction: column;
    }
    
    .carro-conteudo {
        padding: 30px 25px;
    }
    
    .carro-conteudo h2 {
        font-size: 1.8rem;
    }
    
    .btn-agendar {
        width: 100%;
        padding: 16px 30px;
    }
    
    /* Responsividade - Formulário */
    #agendamento {
        padding: 20px;
    }
    
    #agendamento .titulo-principal {
        font-size: 2rem;
    }
    
    #agendamento .subtitulo {
        font-size: 1rem;
    }
    
    #agendamento .botao-agendar {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logocontainer {
        width: 40px;
        height: 40px;
    }
    
    /* Responsividade - Carro Section */
    .carro-conteudo h2 {
        font-size: 1.6rem;
    }
    
    .carro-destaques {
        flex-direction: column;
        gap: 15px;
    }
    
    .carro-conteudo {
        padding: 25px 20px;
    }
    
    /* Responsividade - Formulário */
    #agendamento .titulo-principal {
        font-size: 1.8rem;
    }
    
    #agendamento .campo-formulario input,
    #agendamento .campo-formulario select,
    #agendamento .campo-formulario textarea {
        padding: 12px 14px;
    }
}

.nossa-historia-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: clamp(30px, 8vw, 60px) clamp(15px, 4vw, 20px);
    background-color: #f8f9fa;
    margin-bottom: -90px;
    overflow-x: hidden; /* Previne scroll horizontal */
}

.nossa-historia {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
}

.nossa-historia-titulo {
    text-align: center;
    color: #1a3a5f;
    margin-bottom: clamp(15px, 4vw, 20px);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    position: relative;
    padding-bottom: clamp(15px, 3vw, 20px);
}

.nossa-historia-titulo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(120px, 30vw);
    height: clamp(3px, 0.8vw, 4px);
    background: linear-gradient(to right, #e63946, #1a3a5f);
    border-radius: 2px;
}

.nossa-historia-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
    margin-bottom: clamp(30px, 6vw, 50px);
}

.nossa-historia-texto {
    flex: 1;
    min-width: min(300px, 100%);
    padding: clamp(15px, 3vw, 20px);
}

.nossa-historia-paragrafo {
    margin-bottom: clamp(15px, 3vw, 25px);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #444;
    text-align: left;
    hyphens: auto; /* Melhora quebra de palavras */
}

.nossa-historia-imagem {
    flex: 1;
    min-width: min(500px, 100%);
    max-width: 530px;
	min-height: min(370px, 100%);
    max-height: 400px;	
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 clamp(8px, 2vw, 15px) clamp(20px, 4vw, 35px) rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/5; /* Alterado de 16/9 para 4/5 (mais vertical) */
}

.nossa-historia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.nossa-historia-destaque {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    border-left: clamp(3px, 1vw, 5px) solid #e63946;
    padding: clamp(25px, 4vw, 35px);
    margin: clamp(30px, 6vw, 50px) 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.nossa-historia-destaque-texto {
    font-style: italic;
    color: #ffffff;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 0;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
}

.nossa-historia-destaque-icon {
    color: #e63946;
    margin: 0 clamp(8px, 2vw, 15px);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
}

.nossa-historia-missao {
    background-color: #000000;
    color: white;
    padding: clamp(25px, 4vw, 40px);
    border-radius: 10px;
    margin-top: clamp(40px, 8vw, 60px);
    box-shadow: 0 clamp(8px, 2vw, 10px) clamp(20px, 4vw, 30px) rgba(26, 58, 95, 0.2);
}

.nossa-historia-missao-titulo {
    text-align: center;
    color: white;
    margin-bottom: clamp(20px, 3vw, 25px);
    font-size: clamp(1.6rem, 4vw, 2rem);
    position: relative;
    padding-bottom: clamp(12px, 2vw, 15px);
}

.nossa-historia-missao-titulo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80px, 20vw);
    height: clamp(2px, 0.5vw, 3px);
    background-color: #e63946;
    border-radius: 2px;
}

.nossa-historia-missao-texto {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    text-align: center;
    max-width: min(800px, 90vw);
    margin: 0 auto;
    font-style: italic;
}

.nossa-historia-valores {
    margin-top: clamp(50px, 8vw, 70px);
}

.nossa-historia-valores-titulo {
    text-align: center;
    color: #1a3a5f;
    margin-bottom: clamp(30px, 5vw, 45px);
    font-size: clamp(1.8rem, 4vw, 2.3rem);
}

.nossa-historia-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(25px, 4vw, 35px);
    max-width: min(1250px, 95vw);
    margin: 0 auto;
}

.nossa-historia-valor-card {
    background-color: white;
    padding: clamp(30px, 5vw, 50px) clamp(25px, 4vw, 40px);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 clamp(5px, 1.5vw, 8px) clamp(15px, 3vw, 20px) rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: clamp(3px, 0.8vw, 4px) solid #e63946;
    position: relative;
    overflow: hidden;
    min-height: clamp(250px, 40vw, 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nossa-historia-valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 clamp(10px, 2.5vw, 15px) clamp(20px, 4vw, 30px) rgba(0, 0, 0, 0.15);
}

.nossa-historia-valor-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(3px, 0.8vw, 4px);
    background: linear-gradient(to right, #e63946, #1a3a5f);
}

.nossa-historia-valor-icon {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    color: #e63946;
    margin-bottom: clamp(15px, 3vw, 25px);
}

.nossa-historia-valor-titulo {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: #1a3a5f;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-weight: 700;
}

.nossa-historia-valor-descricao {
    color: #555;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    padding: 0 clamp(5px, 1.5vw, 10px);
}

/* Responsividade específica para telas muito pequenas */
@media (max-width: 480px) {
    .nossa-historia-container {
        padding: 25px 12px;
    }
    
    .nossa-historia-conteudo {
        gap: 25px;
    }
    
    .nossa-historia-destaque {
        border-left: 3px solid #e63946;
        border-radius: 8px;
        margin: 25px -10px;
        padding: 20px 15px;
    }
    
    .nossa-historia-valores-grid {
        gap: 20px;
    }
    
    .nossa-historia-valor-card {
        min-height: auto;
        padding: 25px 20px;
    }
}

/* Responsividade para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .nossa-historia-valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nossa-historia-conteudo {
        flex-direction: row;
    }
}

/* Suporte para modo paisagem em dispositivos móveis */
@media (max-height: 600px) and (orientation: landscape) {
    .nossa-historia-container {
        padding: 25px 15px;
    }
    
    .nossa-historia-valor-card {
        min-height: 200px;
        padding: 20px 15px;
    }
    
    .nossa-historia-valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1600px) {
    .nossa-historia {
        max-width: 1400px;
    }
    
    .nossa-historia-valores-grid {
        max-width: 1400px;
        grid-template-columns: repeat(3, 1fr);
    }
}

	.slider-container {
		width: 650px; /* Aumentado de 550px para 650px */
		max-width: 90%;
		height: auto; /* Garante que a altura se ajuste ao conteúdo */
		min-height: 150px; /* Define uma altura mínima menor */
		background-color: white;
		border-radius: 8px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		overflow: hidden;        
		padding: 15px; /* Reduzido de 20px para 15px */
		margin: 20px auto;
	}

	.slider-wrapper {
		display: flex;
		gap: 12px;
	}

	.main-slide {
		flex: 3;
		border-radius: 6px;
		overflow: hidden;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}

	.main-image {
		width: 100%;
		height: 280px;
		object-fit: cover;
		display: block;
	}

	.thumbnails {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.thumbnail {
		height: calc((280px - 16px) / 3);
		border-radius: 5px;
		overflow: hidden;
		cursor: pointer;
		transition: transform 0.2s ease;
		opacity: 0.7;
	}

	.thumbnail:hover {
		opacity: 0.9;
		transform: scale(1.02);
	}

	.thumbnail.active {
		opacity: 1;
	}

	.thumbnail img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	@media (max-width: 768px) {
		.slider-wrapper {
			flex-direction: column;
		}
		
		.thumbnails {
			flex-direction: row;
			order: -1;
			justify-content: center;
		}
		
		.thumbnail {
			width: calc((100% - 16px) / 3);
			height: 80px;
		}
		
		.main-image {
			height: 250px;
		}
	}

	@media (max-width: 480px) {
		.slider-container {
			padding: 10px;
		}
		
		.thumbnail {
			height: 70px;
		}
		
		.main-image {
			height: 220px;
		}
	}
	
	
	.botaozap.whatsapp-button {
		position: fixed;
		bottom: 30px;
		right: 30px;
		background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
		color: white;
		border-radius: 50px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 25px;
		font-size: 1.3rem;
		font-weight: 700;
		box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
		z-index: 1000;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		text-decoration: none;
		gap: 15px;
		border: 3px solid white;
		overflow: hidden;
	}
	
	.botaozap.whatsapp-button::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
		transition: 0.5s;
	}
	
	.botaozap.whatsapp-button:hover::before {
		left: 100%;
	}
	
	.botaozap.whatsapp-button:hover {
		background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
		transform: translateY(-8px) scale(1.05);
		box-shadow: 0 12px 30px rgba(7, 94, 84, 0.5);
	}
	
	.botaozap.whatsapp-button:active {
		transform: translateY(-4px) scale(1.02);
	}
	
	.botaozap.whatsapp-button i {
		font-size: 2.2rem;
		order: 2; /* Coloca o ícone à direita */
		text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	}
	
	.botaozap.whatsapp-button .text {
		order: 1; /* Coloca o texto à esquerda */
		white-space: nowrap;
		font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
		letter-spacing: 0.5px;
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	}
	
	@media (max-width: 768px) {
		.botaozap.whatsapp-button {
			bottom: 20px;
			right: 20px;
			padding: 14px 22px;
			font-size: 1.2rem;
			gap: 12px;
		}
		
		.botaozap.whatsapp-button i {
			font-size: 2rem;
		}
	}
	
	@media (max-width: 480px) {
		.botaozap.whatsapp-button {
			padding: 12px 20px;
			font-size: 1.1rem;
			gap: 10px;
		}
		
		.botaozap.whatsapp-button i {
			font-size: 1.8rem;
		}
		
		.botaozap.whatsapp-button .text {
			font-weight: 600;
		}
	}
	
	@media (max-width: 360px) {
		.botaozap.whatsapp-button {
			padding: 10px 18px;
			font-size: 1rem;
		}
		
		.botaozap.whatsapp-button i {
			font-size: 1.6rem;
		}
	}

	
	
	