/* BM PLANILHAS - Estilos Principais */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Variables */
:root {
    --primary-blue: #1565c0;
    --secondary-blue: #1976d2;
    --light-blue: #e1f5fe;
    --dark-blue: #0d47a1;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    --success-green: #4caf50;
    --warning-orange: #ff9800;
    --gradient-primary: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    --gradient-secondary: linear-gradient(135deg, #e1f5fe 0%, #ffffff 100%);
    --shadow-light: 0 2px 10px rgba(21, 101, 192, 0.1);
    --shadow-medium: 0 4px 20px rgba(21, 101, 192, 0.15);
    --shadow-heavy: 0 8px 30px rgba(21, 101, 192, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    flex-direction: column;
    padding: 1rem 0;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.8rem 2rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-blue);
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
}

.brand h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: 1px;
}

.hero-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.icon-item i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Form Container */
.hero-right {
    animation: slideInRight 1s ease-out;
}

.form-container {
    background: var(--white);
    color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
}

.form-container h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-form {
    background: var(--success-green);
    color: var(--white);
    margin-top: 1rem;
}

.btn-form:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.btn-cta {
    background: var(--warning-orange);
    color: var(--white);
    font-size: 1.2rem;
    padding: 1.2rem 1.8rem;
}

.btn-cta:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

.btn-buy {
    background: var(--success-green);
    color: var(--white);
}

.btn-buy:hover {
    background: #45a049;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gradient-secondary);
    text-align: center;
}

.about h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Sections */
.cta-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--light-gray);
}

.problems h2 {
    text-align: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border-left: 5px solid var(--warning-orange);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    font-size: 1.8rem;
    color: var(--warning-orange);
}

.problem-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-item p {
    color: var(--gray);
}

.problems-cta {
    text-align: center;
}

.problems-solution {
    font-size: 1.3rem;
    color: var(--success-green);
    margin-bottom: 2rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--white);
}

.products h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products .section-description {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    background: var(--gradient-primary);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image i {
    font-size: 3rem;
    color: var(--white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

.product-content {
    padding: 2rem 1rem;
}

.product-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.product-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    color: var(--success-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.new-price {
    color: var(--success-green);
    font-size: 2.2rem;
    font-weight: 700;
}

.product-buttons {
    display: flex;
    gap: 0.8rem;
}

.product-buttons .btn {
    flex: 1;
    justify-content: center;
    padding: 0.8rem 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--gradient-secondary);
}

.testimonials h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text p {
    color: var(--gray);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background: var(--dark-blue);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-blue);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    border: 1px solid #f0f0f0;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-logo h3 {
    color: var(--secondary-blue);
    font-size: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-blue);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-blue);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    animation: slideInRight 0.3s ease;
}

.toast.show {
    display: flex;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .benefits-grid,
    .problems-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .brand h1 {
        padding-top: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slogan {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-icons {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .icon-item {
        min-width: 80px;
    }
    
    .hero-buttons {
        justify-content: center;
        text-align: center;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .form-container {
        margin-top: 2rem;
    }
    
    .benefits-grid,
    .problems-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .whatsapp-float a span {
        display: none;
    }
    
    .whatsapp-float a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .phone {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .brand h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .slogan {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-icons {
        gap: 0.8rem;
    }
    
    .icon-item {
        min-width: 70px;
    }
    
    .icon-item i {
        font-size: 1.3rem;
        padding: 0.7rem;
    }
    
    .icon-item span {
        font-size: 0.8rem;
    }
    
    .btn-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-container h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .custom-form {
        gap: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .btn-form {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about h2,
    .benefits h2,
    .problems h2,
    .products h2,
    .testimonials h2,
    .faq h2,
    .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .benefit-card,
    .problem-item,
    .product-card {
        padding: 1.5rem;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .contact-info,
    .footer-links {
        justify-content: center;
        align-items: center;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .toast {
        right: 15px;
        left: 15px;
        width: auto;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .brand h1 {
        font-size: 1.6rem;
    }
    
    .hero-icons {
        gap: 0.5rem;
    }
    
    .icon-item {
        flex-direction: row;
        gap: 0.5rem;
        min-width: auto;
        flex: 1;
        max-width: calc(50% - 0.25rem);
    }
    
    .icon-item i {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
    
    .icon-item span {
        font-size: 0.75rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .btn-cta {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}