/* Estilos Globais - Dom Maromba - PADRONIZADO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
}

/* CONTAINER PADRONIZADO - Base para todas as páginas */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Garantir que nenhum elemento ultrapasse a largura */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* HEADER PADRONIZADO */
header {
    background-color: #ffcc00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    overflow: hidden;
}

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

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

/* NAVEGAÇÃO PADRONIZADA */
nav ul {
    display: flex;
    list-style: none;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: #000000;
    font-size: 1rem;
    white-space: nowrap;
}

/* FOOTER PADRONIZADO */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* GRIDS PADRONIZADOS - Evitar overflow */
.values-grid,
.commitments-grid,
.testimonials-grid,
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* RESPONSIVIDADE PADRONIZADA */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    /* Grids em mobile sempre 1 coluna */
    .values-grid,
    .commitments-grid,
    .testimonials-grid,
    .product-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Navegação mobile */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: #000000;
        font-size: 24px;
        cursor: pointer;
    }

    nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: #ffcc00;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    nav.active ul {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* LANDSCAPE PADRONIZADO - Centralização garantida */
@media (orientation: landscape) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        margin: 0 auto;
        padding: 0 2.5%;
    }
    
    .header-container {
        max-width: 95%;
        padding: 0 2.5%;
    }
    
    /* Footer centralizado em landscape */
    .footer-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        flex-wrap: wrap;
        max-width: 95%;
        padding: 0 2.5%;
    }
    
    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-section {
        text-align: center;
        min-width: 200px;
        flex: 1;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff5500;
}

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

.btn {
    display: inline-block;
    background-color: #ff5500;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e64d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 85, 0, 0.3);
}

/* Header */
header {
    background-color: #ffcc00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    flex-direction: row;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: #000000;
    font-size: 1rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff5500;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #0f0f0f;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 70vh;
}

/* Responsividade para o banner */
@media (max-width: 768px) {
    .hero img {
        max-height: 50vh;
        object-fit: cover;
    }
}

@media (orientation: landscape) {
    .hero img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
}

/* Categorias de Produtos */
.products {
    padding: 80px 0;
    width: 100%;
}

.products-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: #ffffff;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff5500;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.product-category {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    width: 100%;
}

.product-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff5500;
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-slider {
    width: 100%;
    height: 100%;
}

.product-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-controls button:hover {
    background-color: rgba(255, 85, 0, 0.8);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info p {
    margin-bottom: 15px;
    color: #ccc;
}

.details-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #ff5500;
    color: #ff5500;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.details-btn:hover {
    background-color: #ff5500;
    color: #fff;
}

.product-details {
    padding: 0 20px 20px;
    display: none;
}

.product-details h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: #ff5500;
}

.product-details ul {
    list-style-position: inside;
    margin-bottom: 15px;
    color: #ccc;
}

.product-details ul li {
    margin-bottom: 5px;
}

.product-details ul ul {
    margin-left: 20px;
    margin-top: 5px;
}

.product-details p {
    color: #999;
    font-style: italic;
}

/* Depoimentos */
.testimonials {
    padding: 80px 0;
    background-color: #1a1a1a;
    width: 100%;
}

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

.testimonial-item {
    padding: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: #ff5500;
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: #ff5500;
}

/* Contato */
.contact {
    padding: 80px 0;
    width: 100%;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: #ffffff;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff5500;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #ff5500;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5500;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    width: 100%;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

/* ESTILOS ANTIGOS REMOVIDOS - USAR APENAS A PADRONIZAÇÃO COMPLETA NO FINAL DO ARQUIVO */

.footer-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff5500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff5500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #999;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff5500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

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

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsividade */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: #ffcc00;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    nav.active ul {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-social {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-links h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}



/* Otimização dos ícones de redes sociais */
.footer-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    background-color: #ff5500;
    transform: translateY(-3px);
}

.footer-social .social-icons i {
    font-size: 18px;
    color: #fff;
}

@media (min-width: 769px) {
    .footer-social .social-icons {
        justify-content: flex-start;
    }
}

/* Ajustes para orientação landscape em dispositivos móveis */
@media (orientation: landscape) {
    /* Centralização do conteúdo em landscape */
    .container {
        max-width: 90%;
        margin: 0 auto;
        padding: 0 5%;
    }
    
    /* Ajuste do footer em landscape */
    .footer-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        flex-wrap: wrap;
    }
    
    /* Centralização dos links no footer em landscape */
    .footer-links {
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Centralização dos ícones sociais em landscape */
    .footer-social {
        text-align: center;
    }
    
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
    
    /* Ajuste do logo grande no footer em landscape - MAIOR */
    .footer-logo {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        padding: 25px 0;
    }
    
    .footer-logo img {
        margin: 0 auto;
        width: auto;
        height: 180px;
        max-width: 180px;
        object-fit: contain;
        aspect-ratio: 1/1;
    }
    
    .footer-logo p {
        text-align: center;
        margin: 0 auto;
        max-width: 80%;
    }
    
    /* Ajuste do copyright em landscape */
    .copyright {
        text-align: center;
        width: 100%;
    }
    
    /* Ajustes específicos para páginas Sobre e eBooks em landscape */
    .about-section .container,
    .ebooks-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Ajuste dos links rápidos em landscape */
    .quick-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .quick-links h3 {
        text-align: center;
    }
    
    .quick-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Ajustes específicos para dispositivos em landscape com altura menor */
@media (orientation: landscape) and (max-height: 500px) {
    .footer-content {
        padding: 20px 0;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-links, .footer-social {
        min-width: 200px;
    }
}


/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff5500, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-intro {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.business-hours-card,
.social-media-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info-card h2,
.business-hours-card h2,
.social-media-card h2 {
    color: #ff5500;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 85, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 85, 0, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.method-icon.email {
    background: linear-gradient(45deg, #ff5500, #ff7700);
}

.method-icon.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.method-info h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-info p {
    color: #ff5500;
    font-weight: 600;
    margin-bottom: 5px;
}

.method-info span {
    color: #999;
    font-size: 0.9rem;
}

/* Business Hours */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 85, 0, 0.1);
}

.hour-item.weekend {
    opacity: 0.6;
}

.hour-item .day {
    color: #fff;
    font-weight: 500;
}

.hour-item .time {
    color: #ff5500;
    font-weight: 600;
}

/* Social Media */
.social-media-card p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-platforms {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 85, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-platform:hover {
    background: rgba(255, 85, 0, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateX(5px);
}

.social-platform i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-platform.instagram i {
    color: #e4405f;
}

.social-platform.facebook i {
    color: #1877f2;
}

.social-platform.tiktok i {
    color: #ff0050;
}

.social-platform div strong {
    color: #fff;
    display: block;
    font-size: 1rem;
}

.social-platform div span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.contact-form-card h2 {
    color: #ff5500;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-description {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group.half {
    flex: 0.5;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #ff5500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 85, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5500;
    background: rgba(255, 85, 0, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #ff5500, #ff7700);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #ff7700, #ff9900);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-intro {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card,
    .business-hours-card,
    .social-media-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half {
        flex: 1;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-platform {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .contact-info-card,
    .business-hours-card,
    .social-media-card,
    .contact-form-card {
        padding: 20px;
    }
}


/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    padding: 80px 0;
    background: #fff;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff5500;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.story-image {
    text-align: center;
}

.story-image img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(255, 85, 0, 0.3));
}

.about-mission {
    padding: 80px 0;
    background: #f8f8f8;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 85, 0, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff5500, #ff7700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 2rem;
    color: #fff;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

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

.about-differentials {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
}

.about-differentials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    transition: all 0.3s ease;
}

.differential-item:hover {
    background: rgba(255, 85, 0, 0.1);
    transform: translateX(10px);
}

.differential-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff5500;
    min-width: 60px;
}

.differential-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.differential-item p {
    color: #ccc;
    line-height: 1.6;
}

.about-commitment {
    padding: 80px 0;
    background: #fff;
}

.commitment-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.commitment-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.commitment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.commitment-cta {
    text-align: center;
    background: linear-gradient(135deg, #ff5500, #ff7700);
    padding: 50px 40px;
    border-radius: 20px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.commitment-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.commitment-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.commitment-cta .btn {
    background: #fff;
    color: #ff5500;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.commitment-cta .btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .differential-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .commitment-cta {
        padding: 40px 30px;
    }
    
    .commitment-cta h3 {
        font-size: 1.5rem;
    }
}


/* Estilos específicos para página Sobre - Seguindo padrão da página oficial */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo-hero {
    margin-bottom: 30px;
}

.logo-hero img {
    width: 160px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ff5500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
}

/* Nossa História */
.about-story {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/story-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-story h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff5500;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Cards de Valores - CORRIGIDO */
.about-values {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Cards de Compromissos - CORRIGIDO */
.about-commitments {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.commitment-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Depoimentos - CORRIGIDO */
.about-testimonials {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../images/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #ff5500;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff5500;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #ff5500;
    font-weight: 500;
}

/* Call to Action */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ffffff;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff5500, #ff7700);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,85,0,0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,85,0,0.4);
    background: linear-gradient(45deg, #ff7700, #ff5500);
}

/* Footer específico para página sobre */
.footer-slogan {
    font-size: 1rem;
    color: #ccc;
    margin-top: 15px;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-story h2,
    .about-commitment h2,
    .about-testimonials h2,
    .about-cta h2 {
        font-size: 2.2rem;
    }
    
    .values-grid,
    .commitments-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card,
    .commitment-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .about-hero,
    .about-story,
    .about-values,
    .about-commitment,
    .about-commitments,
    .about-testimonials,
    .about-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-story h2,
    .about-commitment h2,
    .about-testimonials h2,
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle,
    .story-content p,
    .commitment-content p,
    .about-cta p {
        font-size: 1rem;
    }
}



/* CORREÇÕES ADICIONAIS PARA EVITAR OVERFLOW */

/* Garantir que todos os ícones e elementos não ultrapassem */
.value-icon,
.commitment-icon {
    width: 80px;
    height: 80px;
    background: #ff5500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.value-icon i,
.commitment-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.value-card h3,
.commitment-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff5500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.value-card p,
.commitment-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Hover effects mantidos */
.value-card:hover,
.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Nosso Compromisso - Seção de texto */
.about-commitment {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.about-commitment h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff5500;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
    word-wrap: break-word;
}

/* Títulos das seções sobre */
.about-testimonials h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Depoimentos - elementos internos */
.testimonial-quote i {
    font-size: 2rem;
    color: #ff5500;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
    font-style: italic;
    word-wrap: break-word;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff5500;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #ff5500;
    font-weight: 500;
    word-wrap: break-word;
}

/* RESPONSIVIDADE ESPECÍFICA PARA MOBILE */
@media (max-width: 768px) {
    .about-values,
    .about-commitments,
    .about-testimonials {
        padding: 60px 0;
    }
    
    .values-grid,
    .commitments-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .value-card,
    .commitment-card,
    .testimonial-card {
        padding: 30px 20px;
        margin: 0;
    }
    
    .about-commitment h2,
    .about-testimonials h2 {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .commitment-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about-commitment h2,
    .about-testimonials h2 {
        font-size: 1.8rem;
    }
    
    .commitment-content p,
    .testimonial-card p {
        font-size: 1rem;
    }
    
    .value-card h3,
    .commitment-card h3 {
        font-size: 1.1rem;
    }
}


/* PADRONIZAÇÃO COMPLETA DO RODAPÉ - TODAS AS PÁGINAS */

/* Garantir que todas as páginas usem o mesmo estilo de footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Container do footer padronizado */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO DA CAVEIRA - PADRÃO PARA TODAS AS PÁGINAS */
.footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-logo img {
    width: auto;
    height: 150px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* TEXTO DO SLOGAN PADRONIZADO */
.footer-logo p {
    color: #999;
    font-size: 1rem;
    font-style: italic;
    margin-top: 15px;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* SEÇÕES DO FOOTER PADRONIZADAS */
.footer-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff5500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: #ff5500;
    transform: translateX(5px);
}

/* ÍCONES SOCIAIS PADRONIZADOS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #999;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: #ff5500;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

/* COPYRIGHT PADRONIZADO */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    margin-top: 40px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* RESPONSIVIDADE DESKTOP - CAVEIRA MAIOR */
@media (min-width: 769px) {
    .footer-logo {
        margin-bottom: 40px;
        padding: 30px 0;
    }
    
    .footer-logo img {
        height: 250px;
        max-width: 250px;
    }
    
    .footer-logo p {
        font-size: 1.1rem;
        max-width: 400px;
        margin-top: 20px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .footer-logo {
        width: 100%;
        order: -1;
    }
    
    .footer-section {
        width: auto;
        min-width: 200px;
        flex: 1;
    }
}

/* RESPONSIVIDADE TABLET */
@media (min-width: 481px) and (max-width: 768px) {
    .footer-logo img {
        height: 180px;
        max-width: 180px;
    }
    
    .footer-logo p {
        font-size: 1rem;
    }
}

/* LANDSCAPE MOBILE - CAVEIRA OTIMIZADA */
@media (orientation: landscape) and (max-width: 1024px) {
    .footer-logo {
        padding: 25px 0;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        height: 180px;
        max-width: 180px;
    }
    
    .footer-logo p {
        font-size: 0.95rem;
        max-width: 350px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 150px;
        flex: 1;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
    .footer-logo img {
        height: 120px;
        max-width: 120px;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* RESPONSIVIDADE PARA CAVEIRA DO HERO AUMENTADA */
@media (max-width: 768px) {
    .logo-hero img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .logo-hero img {
        width: 100px;
    }
}

@media (min-width: 1200px) {
    .logo-hero img {
        width: 180px;
    }
}


/* Estilos para story-paragraph - Correção de alinhamento */
.story-paragraph {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    display: block;
}

.story-paragraph h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5500;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    display: block;
}

.story-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    display: block;
}


/* Media queries específicas para corrigir alinhamento em landscape */
@media screen and (orientation: landscape) and (max-height: 600px) {
    .story-paragraph,
    .story-paragraph h3,
    .story-paragraph p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
        display: block !important;
        width: 100% !important;
    }
    
    .story-content {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}

/* Correção adicional para desktop */
@media screen and (min-width: 768px) {
    .story-paragraph,
    .story-paragraph h3,
    .story-paragraph p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
        display: block !important;
        width: 100% !important;
    }
    
    .story-content {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
        max-width: 900px !important;
    }
}

