/* Fonte Arponasan - Manual de Identidade Visual */
/* 01 - Arpona Sans Black */
@font-face {
    font-family: 'Arponasan';
    src: local('ArponaSans Black'), 
         url('./Arponasan/fonnts.com-ArponaSans_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* 02 - Arpona Sans Light */
@font-face {
    font-family: 'Arponasan';
    src: local('ArponaSans Light'), 
         url('./Arponasan/fonnts.com-ArponaSans_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* 03 - Arpona Sans Médio */
@font-face {
    font-family: 'Arponasan';
    src: local('ArponaSans Medium'), 
         url('./Arponasan/fonnts.com-ArponaSans_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Previne zoom horizontal em dispositivos móveis */
    overflow-x: hidden;
}

body {
    font-family: 'Arponasan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Previne zoom horizontal em dispositivos móveis */
    overflow-x: hidden;
    /* Melhora a performance em dispositivos móveis */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Padding removido para eliminar faixa branca no topo */
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Container responsivo para dispositivos pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
}

/* Utility Classes */
.highlight {
    color: #000000;
}

.highlight-orange {
    color: #ea580c;
}

.highlight-purple {
    color: #9333ea;
}

/* Header Simples */
.header-simple {
    height: 0;
    position: relative;
}

.header-spacer {
    height: 0;
}

/* CSS do body já definido acima - removido duplicação */

/* Hero Section */
.hero {
    position: relative;
    background: #D9251A;
    color: white;
    padding: 8rem 0;
    min-height: 70vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(234, 88, 12, 0.3));
}

.hero-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.decoration-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: #fbbf24;
}

.decoration-2 {
    top: 10rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    background: #a855f7;
}

.decoration-3 {
    bottom: 5rem;
    left: 33.333333%;
    width: 10rem;
    height: 10rem;
    background: #fb923c;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

/* Hero cards removidos para dar mais destaque à imagem de fundo */

/* Seção Diferenciais Elegante */
.diferenciais-elegante {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.diferenciais-elegante::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 37, 26, 0.2), transparent);
}

/* Header Elegante */
.elegante-header {
    text-align: center;
    margin-bottom: 5rem;
}

.elegante-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-highlight {
    color: #D9251A;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D9251A, #F7C700);
    border-radius: 2px;
}

.elegante-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid de Cards */
.elegante-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .elegante-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Cards com Flip Effect */
.elegante-card {
    height: 350px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.elegante-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.card-back {
    transform: rotateY(180deg);
    color: white;
}

.red-back {
    background: linear-gradient(135deg, #D9251A, #ef4444);
}

.yellow-back {
    background: linear-gradient(135deg, #F7C700, #eab308);
}

.gray-back {
    background: linear-gradient(135deg, #64748b, #94a3b8);
}

/* Ícones dos Cards */
.card-icon-wrapper {
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.red-theme {
    background: linear-gradient(135deg, #D9251A, #ef4444);
    box-shadow: 0 8px 25px rgba(217, 37, 26, 0.3);
}

.yellow-theme {
    background: linear-gradient(135deg, #F7C700, #eab308);
    box-shadow: 0 8px 25px rgba(247, 199, 0, 0.3);
}

.gray-theme {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
}

.elegante-card:hover .card-icon {
    transform: scale(1.1);
}

/* Conteúdo dos Cards */
.card-front h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card-front p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-arrow {
    color: #D9251A;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.elegante-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Conteúdo do Verso */
.back-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.back-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.back-content li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Call to Action */
.elegante-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.elegante-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.elegante-cta p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.elegante-button {
    background: linear-gradient(135deg, #D9251A, #F7C700);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(217, 37, 26, 0.3);
}

.elegante-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(217, 37, 26, 0.4);
}

.elegante-button i {
    transition: transform 0.3s ease;
}

.elegante-button:hover i {
    transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .diferenciais-elegante {
        padding: 4rem 0;
    }
    
    .elegante-header {
        margin-bottom: 3rem;
    }
    
    .elegante-title {
        font-size: 2rem;
    }
    
    .elegante-subtitle {
        font-size: 1rem;
    }
    
    .elegante-grid {
        margin-bottom: 3rem;
    }
    
    .elegante-card {
        height: 300px;
    }
    
    .card-front,
    .card-back {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-front h3 {
        font-size: 1.25rem;
    }
    
    .card-front p {
        font-size: 0.9rem;
    }
    
    .back-content h4 {
        font-size: 1.25rem;
    }
    
    .back-content li {
        font-size: 1rem;
    }
    
    .elegante-cta {
        padding: 2rem 1.5rem;
    }
    
    .elegante-cta h3 {
        font-size: 1.5rem;
    }
    
    .elegante-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Melhorias para dispositivos muito pequenos - Seção Diferenciais */
@media (max-width: 480px) {
    .diferenciais-elegante {
        padding: 3rem 0;
    }
    
    .elegante-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .elegante-subtitle {
        font-size: 0.9rem;
    }
    
    .elegante-card {
        height: 280px;
        /* Desabilita o flip em dispositivos muito pequenos para melhor usabilidade */
        perspective: none;
    }
    
    .elegante-card:hover .card-inner {
        transform: none;
    }
    
    .card-front,
    .card-back {
        padding: 1.25rem;
        position: relative;
        backface-visibility: visible;
    }
    
    .card-back {
        display: none;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .card-front h3 {
        font-size: 1.1rem;
    }
    
    .card-front p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .elegante-cta {
        padding: 2rem 1rem;
    }
    
    .elegante-cta h3 {
        font-size: 1.25rem;
    }
    
    .elegante-cta p {
        font-size: 0.9rem;
    }
}

/* Estilos da seção de vídeo removidos - agora o vídeo é fundo dos diferenciais */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}



.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Sobre Section - Design Moderno e Inovador */
/* Cores do Manual de Identidade Visual:
   Vermelho Principal: #D9251A (RGB: 217, 37, 26) - Pantone 480º C
   Amarelo Secundário: #F7C700 (RGB: 247, 199, 0) - Pantone 7406 C  
   Cinza Neutro: #F1F2F2 (RGB: 241, 242, 242) - Pantone 663 C */
/* ================================
   SEÇÃO SOBRE - ESTILO IPIRANGA CLEAN
   ================================ */
.sobre-ipiranga {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #D9251A;
    border-bottom: 4px solid #F7C700;
}

/* Vídeo de fundo */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .background-video {
        /* Em dispositivos móveis, ajustar posição para melhor visualização */
        object-position: center center;
    }
    
    .sobre-ipiranga::before {
        /* Aumentar um pouco a opacidade em mobile para melhor legibilidade */
        background: rgba(241, 242, 242, 0.8);
    }
}

/* Overlay para garantir legibilidade do texto */
.sobre-ipiranga::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}





/* Header da seção */
.sobre-ipiranga .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sobre-ipiranga .brand-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.sobre-ipiranga .brand-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: 
        drop-shadow(0 8px 25px rgba(0, 0, 0, 0.8))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.9))
        brightness(1.1)
        contrast(1.2);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sobre-ipiranga .brand-logo:hover {
    transform: scale(1.05);
}

.sobre-ipiranga .brand-info {
    text-align: center;
}

.sobre-ipiranga .brand-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.sobre-ipiranga .brand-highlight {
    color: #ffffff;
}

.sobre-ipiranga .brand-slogan {
    margin-top: 1rem;
    text-align: center;
}

.slogan-yellow {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slogan-red {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.brand-slogan p {
    margin: 0.5rem 0 0 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}



/* Responsividade */
@media (max-width: 768px) {
    .sobre-ipiranga {
        padding: 6rem 0;
    }
    
    .sobre-ipiranga .brand-showcase {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .sobre-ipiranga .brand-info {
        text-align: center;
    }
    
    .sobre-ipiranga .brand-title {
        font-size: 2.8rem;
    }
    
    .sobre-ipiranga .brand-logo {
        width: 120px;
        height: 120px;
    }
    

}

@media (max-width: 480px) {
    .sobre-ipiranga .brand-title {
        font-size: 2rem;
    }
    
    .slogan-yellow,
    .slogan-red {
        font-size: 1.1rem;
    }
}

/* Estilos removidos - seção moderna não utilizada */

.element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 20%;
    animation-delay: 1s;
}

.element-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Header moderno */
.modern-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 10;
}

.brand-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 3;
    background: #ffffff;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-glow {
    display: none;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.brand-info {
    text-align: left;
}

.brand-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    color: #ffffff;
    font-weight: 800;
    animation: titleSlideIn 1s ease-out;
}

.title-line-2 {
    display: block;
    color: #F7C700;
    font-weight: 800;
    animation: titleSlideIn 1s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tagline-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: none;
}

.tagline-accent {
    color: #F7C700;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Cards modernos */
.modern-cards-container {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .modern-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.modern-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modern-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(247, 199, 0, 0.5);
}

.card-background {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.mission-card .card-background {
    background: linear-gradient(135deg, rgba(217, 37, 26, 0.2), rgba(217, 37, 26, 0.05));
}

.vision-card .card-background {
    background: linear-gradient(135deg, rgba(247, 199, 0, 0.2), rgba(247, 199, 0, 0.05));
}

.values-card .card-background {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.modern-card:hover .card-background {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2.5rem;
    color: white;
    overflow: hidden;
}

.icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mission-icon .icon-bg {
    background: linear-gradient(135deg, #D9251A, #D9251A);
}

.vision-icon .icon-bg {
    background: linear-gradient(135deg, #F7C700, #F7C700);
}

.values-icon .icon-bg {
    background: linear-gradient(135deg, #F1F2F2, #F1F2F2);
}

.values-icon i {
    color: #D9251A !important;
}

.icon-container i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modern-card:hover .icon-container i {
    transform: scale(1.2) rotate(10deg);
}

.icon-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle.p1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle.p2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle.p3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

.modern-card:hover .particle {
    animation-duration: 1.5s;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #F7C700, #F7C700);
    transition: width 0.3s ease;
}

.modern-card:hover .card-title::after {
    width: 100%;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.card-decorator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.mission-decorator {
    background: radial-gradient(circle, #D9251A, transparent);
}

.vision-decorator {
    background: radial-gradient(circle, #F7C700, transparent);
}

.values-decorator {
    background: radial-gradient(circle, #F1F2F2, transparent);
}

.modern-card:hover .card-decorator {
    opacity: 0.3;
    transform: scale(1.2);
}

/* Linhas conectivas */
.connection-lines {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    z-index: 5;
}

.connecting-svg {
    width: 100%;
    max-width: 800px;
    height: 100%;
}

.connection-path {
    stroke-dasharray: 10;
    animation: pathAnimation 3s ease-in-out infinite;
}

@keyframes pathAnimation {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    50% {
        stroke-dashoffset: 20;
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 1023px) {
    .brand-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-info {
        text-align: center;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .floating-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .sobre-modern {
        padding: 4rem 0;
    }
    
    .modern-header {
        margin-bottom: 4rem;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .tagline-text,
    .tagline-accent {
        font-size: 1rem;
    }
    
    .modern-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

/* Melhorias para dispositivos muito pequenos - Seção Sobre */
@media (max-width: 480px) {
    .sobre-modern {
        padding: 3rem 0;
    }
    
    .floating-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .brand-title {
        font-size: 1.75rem;
    }
    
    .tagline-text,
    .tagline-accent {
        font-size: 0.9rem;
    }
    
    .modern-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    /* Simplifica animações em dispositivos pequenos para melhor performance */
    .floating-element {
        display: none;
    }
}



/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background: #F1F2F2;
    position: relative;
    border-top: 4px solid #F7C700;
}

/* Serviços Section - Layout Moderno */
.servicos-modern {
    padding: 6rem 0;
    position: relative;
    border-top: 4px solid #F7C700;
    border-bottom: 4px solid #D9251A;
    overflow: hidden;
}

.servicos-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('nossos serviços/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(3px);
    z-index: -2;
}

.servicos-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.section-header-modern p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.servicos-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.servico-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(217, 37, 26, 0.1);
}

.servico-image-modern {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.servico-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servico-card-modern:hover .servico-img {
    transform: scale(1.05);
}

.servico-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(217, 37, 26, 0.8) 0%,
        rgba(247, 199, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servico-card-modern:hover .servico-overlay {
    opacity: 1;
}

.servico-icon-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.servico-content-modern {
    padding: 2rem;
}

.servico-content-modern h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.servico-content-modern p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.servico-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servico-list-modern li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    color: #475569;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.servico-list-modern li:last-child {
    border-bottom: none;
}

.servico-list-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D9251A;
    font-weight: bold;
}

.servicos-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.servico-card {
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    transform: scale(1);
    position: relative;
}

.servico-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.servico-card.red-bg {
    background: #fef2f2;
}

.servico-card.yellow-bg {
    background: #fffbeb;
}

.servico-card.purple-bg {
    background: #faf5ff;
}

.servico-card.orange-bg {
    background: #fff7ed;
}

.servico-card.green-bg {
    background: #f0fdf4;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.servico-card.blue-bg {
    background: #eff6ff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.servico-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: white;
    transition: transform 0.3s;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
}

.servico-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Remove o fundo vermelho quando há uma imagem de logo */
.servico-icon.red .servico-logo {
    background: transparent;
    width: 6rem;
    height: 6rem;
}

.servico-icon.red:has(.servico-logo) {
    background: transparent;
}

.servico-icon.yellow {
    background: linear-gradient(135deg, #eab308, #d97706);
}

.servico-icon.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

/* Remove o fundo roxo quando há uma imagem de logo */
.servico-icon.purple .servico-logo {
    background: transparent;
    width: 6rem;
    height: 6rem;
}

.servico-icon.purple:has(.servico-logo) {
    background: transparent;
}

.servico-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Remove o fundo laranja quando há uma imagem de logo */
.servico-icon.orange .servico-logo {
    background: transparent;
    width: 8rem;
    height: 8rem;
}

.servico-icon.orange:has(.servico-logo) {
    background: transparent;
}

.servico-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Remove o fundo verde quando há uma imagem de logo */
.servico-icon.green .servico-logo {
    background: transparent;
    width: 6rem;
    height: 6rem;
}

.servico-icon.green:has(.servico-logo) {
    background: transparent;
}

.servico-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Remove o fundo azul quando há uma imagem de logo */
.servico-icon.blue .servico-logo {
    background: transparent;
    width: 6rem;
    height: 6rem;
}

.servico-icon.blue:has(.servico-logo) {
    background: transparent;
}

.servico-logo {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.servico-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.servico-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Ajuste específico para a imagem da Econorte */
.servico-card.green-bg .servico-image-container {
    align-items: center;
    padding: 0;
    height: 100%;
    flex-grow: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.servico-card.green-bg .servico-image {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
    border-radius: 1rem;
}

/* Posicionamento da logo sobre a imagem no card da Econorte */
.servico-card.green-bg .servico-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Ajuste específico para a imagem do Help */
.servico-card.blue-bg .servico-image-container {
    align-items: center;
    padding: 0;
    height: 100%;
    flex-grow: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.servico-card.blue-bg .servico-image {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
    border-radius: 1rem;
}

/* Posicionamento da logo sobre a imagem no card do Help */
.servico-card.blue-bg .servico-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Posicionamento do ícone sobre a imagem no card de troca de óleo */
.servico-card.red-bg .servico-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Posicionamento do ícone sobre a imagem no card da conveniência */
.servico-card.yellow-bg .servico-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Posicionamento do ícone sobre a imagem no card da barbearia */
.servico-card.purple-bg .servico-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Posicionamento do ícone sobre a imagem no card da açaiteria */
.servico-card.orange-bg .servico-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Estilo para a imagem dentro do círculo */
.icon-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
    margin: auto;
}

/* Efeito hover para o card de troca de óleo */
.hover-card {
    overflow: hidden;
}

.hover-card .servico-image-container {
    transition: transform 0.4s ease-in-out;
}

.hover-card:hover .servico-image-container {
    transform: translateY(-100%);
}

.servico-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.hover-card:hover .servico-hover-content {
    transform: translateY(0);
}

.servico-hover-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.servico-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servico-list li {
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.servico-list li:last-child {
    border-bottom: none;
}

.servico-list li::before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.servico-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.servico-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.servico-features {
    list-style: none;
}

.servico-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.feature-dot.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-dot.yellow {
    background: linear-gradient(135deg, #eab308, #d97706);
}

.feature-dot.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.feature-dot.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Estilos dos serviços adicionais removidos */

/* Seção Localização - Estilo Ipiranga Exato */
.location-ipiranga {
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: visible;
    background: 
        /* Overlay para melhorar legibilidade do texto */
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        /* Imagem de fundo do mapa */
        url('local/posto1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 4px solid #D9251A;
}

.ipiranga-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Background removido - usando apenas a imagem principal */
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float-gentle 6s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.15; }
}

/* Layout Principal */
.ipiranga-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 700px;
    overflow: visible;
}

/* Seção do Celular */
.phone-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-container {
    position: relative;
    z-index: 3;
}

.phone-image-placeholder {
    position: relative;
    width: 500px;
    height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.phone-mockup {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    /* Efeito tocando a linha vermelha - descendo mais */
    transform: translateY(95px);
}



/* Animação de Percurso */
.route-animation {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 120px;
}

.route-path {
    position: relative;
    width: 100%;
    height: 100px;
}

.path-svg {
    width: 100%;
    height: 100%;
}

.route-line {
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.route-arrow {
    filter: drop-shadow(0 2px 4px rgba(29, 78, 216, 0.3));
}

/* Carrinho Animado */
.moving-icon {
    position: absolute;
    top: 35px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #D9251A, #F7C700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(217, 37, 26, 0.3);
    animation: move-along-path 4s ease-in-out infinite;
}

@keyframes move-along-path {
    0% {
        left: 10px;
        top: 35px;
        transform: rotate(0deg);
    }
    25% {
        left: 70px;
        top: 15px;
        transform: rotate(10deg);
    }
    50% {
        left: 120px;
        top: 25px;
        transform: rotate(-5deg);
    }
    75% {
        left: 160px;
        top: 35px;
        transform: rotate(5deg);
    }
    100% {
        left: 170px;
        top: 35px;
        transform: rotate(0deg);
    }
}

/* Pontos de Referência */
.route-points {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0 20px;
}

.point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.point i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.point.start i {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    animation: pulse-point 3s ease-in-out infinite;
}

.point.end i {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: pulse-point 3s ease-in-out infinite 1.5s;
}

.point span {
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

@keyframes pulse-point {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

/* Seção de Conteúdo */
.content-section {
    padding-left: 2rem;
}

.content-wrapper {
    max-width: 500px;
}

/* Mascote 2 da seção localização */
.mascote-localizacao {
    width: 160px;
    height: auto;
    margin-top: 4rem;
    margin-bottom: 0.1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.brand-highlight {
    color: #D9251A !important;
    font-weight: 900;
    display: inline-block;
}

.subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Botão CTA */
.cta-section {
    margin-bottom: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Stats Rápidas */
.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #475569;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-text span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsividade Ipiranga - Mobile Otimizado */
@media (max-width: 1024px) {
    .ipiranga-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .phone-section {
        order: 1;
    }
    
    .content-section {
        order: 2;
        padding-left: 0;
    }
    
    .route-animation {
        display: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .location-ipiranga {
        padding: 2rem 0 3rem 0;
    }
    
    .ipiranga-layout {
        gap: 1rem;
        min-height: auto;
    }
    
    .phone-image-placeholder {
        width: 300px;
        height: 400px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        max-width: 300px;
        transform: translateY(40px);
    }
    

    
    .content-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: auto;
        display: inline-flex;
    }
    
    /* Ocultar ícones flutuantes */
    .floating-icons {
        display: none;
    }
}

/* Layout Específico para Mobile */
@media (max-width: 480px) {
    .location-ipiranga {
        padding: 1.5rem 0 2rem 0;
    }
    
    .ipiranga-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .phone-section {
        order: 2;
        position: relative;
    }
    
    .content-section {
        order: 1;
        padding-left: 0;
    }
    
    .content-wrapper {
        max-width: 100%;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.4;
    }
    
    /* Seção da mão com botão ao lado */
    .mobile-bottom-section {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        padding: 0 1rem;
        position: relative;
    }
    
    .phone-image-placeholder {
        width: 200px;
        height: 300px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .phone-mockup {
        max-width: 200px;
        transform: translateY(35px);
    }
    

    
    .mobile-cta-section {
        display: flex;
        align-items: flex-end;
        padding-bottom: 2rem;
    }
    
    .cta-section {
        margin-bottom: 0;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

.dynamic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(217, 37, 26, 0.05) 0%, transparent 40%),
        linear-gradient(-45deg, rgba(247, 199, 0, 0.05) 60%, transparent 100%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-circle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(217, 37, 26, 0.1), rgba(247, 199, 0, 0.1));
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite;
}

.float-triangle {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid rgba(217, 37, 26, 0.08);
    animation: float-slow 6s ease-in-out infinite reverse;
}

.float-line {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247, 199, 0, 0.3), transparent);
    transform: rotate(-30deg);
    animation: float-slow 10s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Hero Title Dinâmico */
.location-hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.dynamic-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.highlight-posto {
    color: #475569;
    position: relative;
}

.highlight-estrela {
    background: linear-gradient(135deg, #D9251A 0%, #F7C700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-estrela::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #D9251A 0%, #F7C700 100%);
    border-radius: 2px;
}

.dynamic-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Layout do Conteúdo */
.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Mapa Interativo */
.map-interactive {
    position: relative;
}

.map-container-dynamic {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.map-container-dynamic:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.location-pin {
    background: rgba(217, 37, 26, 0.95);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(217, 37, 26, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse-pin 3s ease-in-out infinite;
}

@keyframes pulse-pin {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Painel de Informações */
.info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-highlight {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.info-highlight:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-icon-bg.address {
    background: linear-gradient(135deg, #D9251A, #dc2626);
}

.info-icon-bg.schedule {
    background: linear-gradient(135deg, #059669, #10b981);
}

.info-icon-bg.contact {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #374151;
    margin-bottom: 0.25rem;
}

.info-text span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Display de Horário */
.time-display {
    margin: 0.5rem 0;
}

.hours {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.time-display small {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #059669;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Número de Telefone */
.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #1d4ed8;
}

/* Botões de Ação */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-action {
    background: linear-gradient(135deg, #D9251A, #dc2626);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary-action:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(217, 37, 26, 0.3);
}

.btn-secondary-action {
    background: linear-gradient(135deg, #25d366, #22c55e);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary-action:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

/* Responsividade Dinâmica */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dynamic-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .location-dynamic {
        padding: 4rem 0;
    }
    
    .dynamic-title {
        font-size: 2.5rem;
    }
    
    .dynamic-subtitle {
        font-size: 1.1rem;
    }
    
    .location-hero {
        margin-bottom: 3rem;
    }
    
    .location-content {
        gap: 2rem;
    }
    
    .map-container-dynamic {
        height: 350px;
    }
    
    .info-highlight {
        padding: 1.25rem;
    }
    
    .info-icon-bg {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-primary-action,
    .btn-secondary-action {
        padding: 0.875rem 1.25rem;
    }
    
    /* Ocultar elementos flutuantes em mobile */
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .dynamic-title {
        font-size: 2rem;
    }
    
    .map-container-dynamic {
        height: 300px;
        border-radius: 16px;
    }
    
    .info-highlight {
        padding: 1rem;
        border-radius: 12px;
    }
}

/* Introdução Elegante */
.location-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.location-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.title-accent {
    background: linear-gradient(135deg, #D9251A 0%, #F7C700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.location-description {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Layout Principal */
.location-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Seção do Mapa Premium */
.map-section-premium {
    position: relative;
}

.map-wrapper-premium {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.map-wrapper-premium:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 20px 20px -10px rgba(0, 0, 0, 0.08);
}

.map-action-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.route-btn {
    background: rgba(26, 32, 44, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-btn:hover {
    background: rgba(217, 37, 26, 0.9);
    transform: translateY(-1px);
}

/* Sidebar de Informações */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-modern {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.info-card-modern:hover {
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.address-icon {
    background: linear-gradient(135deg, #D9251A, #dc2626);
}

.time-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.contact-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

/* Endereço */
.address-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.address-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.address-text span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Horário */
.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    width: fit-content;
}

.schedule-info span {
    font-size: 0.9rem;
    color: #6b7280;
}

.status-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.status-live {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

/* Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #1d4ed8;
}

.whatsapp-action {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whatsapp-action:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

/* Responsividade Premium */
@media (max-width: 1024px) {
    .location-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper-premium {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .location-premium {
        padding: 3rem 0;
    }
    
    .location-main-title {
        font-size: 2rem;
    }
    
    .location-description {
        font-size: 1rem;
    }
    
    .location-layout {
        gap: 1.5rem;
    }
    
    .map-wrapper-premium {
        height: 300px;
    }
    
    .info-card-modern {
        padding: 1.25rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .hours-badge {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .phone-link {
        font-size: 1.1rem;
    }
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape-circle {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #F7C700 0%, #D9251A 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-triangle {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid #D9251A;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-square {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: #F7C700;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Header Moderno */
.location-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.location-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(217, 37, 26, 0.3));
}

.location-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 300;
}

/* Cards Modernos */
.location-cards {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Card do Mapa */
.map-card {
    position: relative;
}

.card-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #D9251A, #F7C700);
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-container {
    position: relative;
    height: 400px;
}

.map-container iframe {
    border-radius: 0 0 20px 20px;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
}

.map-action-btn {
    background: #D9251A;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 37, 26, 0.3);
}

.map-action-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 37, 26, 0.4);
}

/* Card de Informações */
.info-card {
    padding: 2rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(241, 242, 242, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(241, 242, 242, 0.5);
    transform: translateX(5px);
}

.info-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.address-item .info-icon-modern {
    background: linear-gradient(135deg, #D9251A, #F7C700);
}

.schedule-item .info-icon-modern {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-item .info-icon-modern {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.info-content span {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
}

.info-content small {
    font-size: 0.8rem;
    color: #9ca3af;
    display: block;
    margin-top: 0.25rem;
}

/* Destaque para horário */
.highlight-time {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #10b981 !important;
}

/* Indicador de status */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Destaque para telefone */
.phone-highlight {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #3b82f6 !important;
}

/* Botão WhatsApp */
.whats-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.whats-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsividade da Seção Localização */
@media (max-width: 768px) {
    .localizacao-moderna {
        padding: 4rem 0;
    }

    .location-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .title-icon {
        font-size: 2.5rem;
    }

    .location-subtitle {
        font-size: 1rem;
    }

    .location-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .card-header {
        padding: 1rem 1.5rem;
    }

    .card-header h3 {
        font-size: 1.25rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-grid {
        gap: 1.5rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .info-content h4 {
        font-size: 1.1rem;
    }

    .highlight-time {
        font-size: 1.3rem !important;
    }

    .phone-highlight {
        font-size: 1.2rem !important;
    }

    .bg-shapes .shape-circle,
    .bg-shapes .shape-triangle,
    .bg-shapes .shape-square {
        display: none;
    }
}

/* Header Limpo */
.clean-header {
    text-align: center;
    margin-bottom: 4rem;
}

.clean-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-brand {
    color: #D9251A;
}

.clean-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Principal */
.location-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Seção do Mapa */
.map-section {
    order: 2;
}

@media (min-width: 1024px) {
    .map-section {
        order: 1;
    }
}

.map-wrapper {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #f3f4f6;
}

/* Seção de Informações */
.info-section {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .info-section {
        order: 2;
    }
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.address-box {
    border-left-color: #D9251A;
}

.schedule-box {
    border-left-color: #F7C700;
}

.contact-box {
    border-left-color: #10b981;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.address-box .info-icon {
    background: #D9251A;
}

.schedule-box .info-icon {
    background: #F7C700;
}

.contact-box .info-icon {
    background: #10b981;
}

.info-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.schedule-hours {
    font-weight: 600;
    color: #1f2937;
}

.schedule-days {
    font-weight: 400;
    color: #6b7280;
}

.status-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-method {
    color: #10b981;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Botões de Ação */
.action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-navigate,
.btn-whatsapp {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-navigate {
    background: #D9251A;
    color: white;
    box-shadow: 0 4px 15px rgba(217, 37, 26, 0.3);
}

.btn-navigate:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217, 37, 26, 0.4);
}

.btn-whatsapp {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .localizacao-clean {
        padding: 3rem 0;
    }
    
    .clean-header {
        margin-bottom: 2.5rem;
    }
    
    .clean-title {
        font-size: 2rem;
    }
    
    .clean-subtitle {
        font-size: 1rem;
    }
    
    .location-grid {
        gap: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .info-box {
        padding: 1.25rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .action-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Melhorias para dispositivos muito pequenos - Seção Localização */
@media (max-width: 480px) {
    .localizacao-clean {
        padding: 2.5rem 0;
    }
    
    .clean-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .clean-subtitle {
        font-size: 0.9rem;
    }
    
    .map-wrapper {
        height: 250px;
        border-radius: 12px;
    }
    
    .info-box {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .info-text h3 {
        font-size: 1rem;
    }
    
    .info-text p {
        font-size: 0.85rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .btn-navigate,
    .btn-whatsapp {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    color: #2c3e50;
    position: relative;
    border-top: 4px solid #D9251A;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('trabalhe conosco/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(5px);
    z-index: -2;
}

.contato::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.contato-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}



@media (min-width: 1024px) {
    .contato-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contato-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(217, 37, 26, 0.1);
}

.contato-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contato-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contato-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.contato-icon.green {
    background: #f0fdf4;
    color: #16a34a;
}

.contato-icon.purple {
    background: #faf5ff;
    color: #9333ea;
}

.contato-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.contato-text h4 {
    font-weight: 600;
    color: #1f2937;
}

.contato-text p {
    color: #4b5563;
}

.btn-whatsapp {
    width: 100%;
    background: #16a34a;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1);
}

.btn-whatsapp:hover {
    background: #15803d;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.contato-form {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
}

.contato-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group select {
    background-color: white;
    cursor: pointer;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background-color: #f9fafb;
    border: 2px dashed #d1d5db;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.form-group input[type="file"]:focus {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.form-help {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.125rem;
}

/* Estados de validação */
.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
}

.notification-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.notification-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.notification-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.notification-content i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Botão desabilitado */
.btn-enviar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-enviar:disabled:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: none !important;
}

.form-group textarea {
    resize: none;
}

.btn-enviar {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1);
}

.btn-enviar:hover {
    background: linear-gradient(135deg, #b91c1c, #c2410c);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Instagram Section */
.instagram {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf5ff, #fdf2f8);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    margin-bottom: 2rem;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .instagram-gallery {
        grid-template-columns: repeat(6, 1fr);
    }
}

.instagram-post {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: scale(1);
}

.instagram-post:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-caption {
    align-self: flex-end;
}

.post-caption p {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.instagram-icon {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 0.5rem;
    color: #9333ea;
}

.instagram-cta {
    text-align: center;
}

.cta-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.cta-card i {
    font-size: 4rem;
    color: #9333ea;
    margin-bottom: 1rem;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.btn-seguir {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: scale(1);
}

.btn-seguir:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Footer Moderno */
.footer-modern {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D9251A, #F7C700, #D9251A);
}

/* Layout Principal */
.footer-main {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
    justify-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
        max-width: 900px;
        margin: 0 auto;
        justify-items: start;
        text-align: left;
    }
}



/* Seções do Footer */
.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #F7C700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D9251A;
}

/* Lista de Contatos */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-icon.phone {
    background: rgba(217, 37, 26, 0.2);
    color: #D9251A;
}

.contact-icon.clock {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.contact-icon.location {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
}

/* Lista de Serviços */
.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li:hover {
    color: #F7C700;
    transform: translateX(5px);
}

.services-list li i {
    color: #D9251A;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

/* Botão Mais Informações */
.footer-toggle {
    text-align: center;
    margin: 2rem 0;
}

.toggle-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toggle-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(247, 199, 0, 0.4);
    color: #F7C700;
    transform: translateY(-2px);
}

.toggle-button i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.toggle-button.expanded i {
    transform: rotate(180deg);
}



/* Linha Divisória */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

/* Rodapé Final */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.slogan p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
    font-style: normal;
}

/* Responsividade */
@media (max-width: 767px) {
    .footer-modern {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main {
        gap: 2.5rem;
    }
    
    .contact-list {
        gap: 1rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        gap: 0.75rem;
    }
}

/* Melhorias para dispositivos muito pequenos - Footer */
@media (max-width: 480px) {
    .footer-modern {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .services-list li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .copyright p,
    .slogan p {
        font-size: 0.7rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 50;
    animation: pulse 2s infinite;
    transform: scale(1);
}

.whatsapp-float:hover {
    background: #15803d;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Melhorias para dispositivos pequenos - WhatsApp Float */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Animações Fade para seção "Encontre o Posto" */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-scale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicação das animações com delays */
.fade-in-phone {
    animation: fade-in-left 1s ease-out 0.2s both;
}

.fade-in-text {
    animation: fade-in-up 1s ease-out 0.6s both;
}

.fade-in-animation {
    animation: fade-in-scale 1s ease-out 1s both;
}

/* Animações para seção de Combustíveis */
.fade-in-combustiveis-text {
    animation: fade-in-left 1s ease-out 0.3s both;
}

.fade-in-combustiveis-card {
    animation: fade-in-up 1s ease-out 0.7s both;
}

/* Animações para seção de Serviços */
.fade-in-servicos-header {
    animation: fade-in-up 1s ease-out 0.2s both;
}

.fade-in-servicos-cards {
    animation: fade-in-up 1s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: 60vh;
    }
    
    .hero-content {
        min-height: 40vh;
    }
    
    .sobre, .servicos, .localizacao, .contato, .instagram {
        padding: 3rem 0;
    }
}



.contato .section-header h2 {
    color: #000000;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.contato .section-header p {
    color: #000000;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.contato .contato-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    color: #2c3e50;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(217, 37, 26, 0.1);
}

/* ================================
   SEÇÃO COMBUSTÍVEIS ESTRELA D'ALVA
   ================================ */
.combustiveis-ipiranga {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #F7C700;
}

/* Elementos animados de fundo */
.combustiveis-ipiranga::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(217, 37, 26, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 242, 242, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(217, 37, 26, 0.05) 0%, transparent 50%);
    animation: float-background 20s ease-in-out infinite;
    z-index: 0;
}

.combustiveis-ipiranga::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 60% 10%, rgba(217, 37, 26, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 60%, rgba(241, 242, 242, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 90%, rgba(217, 37, 26, 0.04) 0%, transparent 40%);
    animation: float-background-reverse 25s ease-in-out infinite;
    z-index: 0;
}

/* Animações para o fundo */
@keyframes float-background {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
        opacity: 1;
    }
}

@keyframes float-background-reverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(15px) rotate(-1deg);
        opacity: 0.9;
    }
}

/* Garantir que o conteúdo fique sobre as animações */
.combustiveis-content {
    position: relative;
    z-index: 1;
}

/* Partículas flutuantes */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(217, 37, 26, 0.1);
    animation: float-particle 15s ease-in-out infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(217, 37, 26, 0.08), rgba(241, 242, 242, 0.12));
}

.particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-duration: 25s;
    animation-delay: -5s;
    background: linear-gradient(135deg, rgba(217, 37, 26, 0.06), rgba(241, 242, 242, 0.10));
}

.particle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 70%;
    animation-duration: 18s;
    animation-delay: -8s;
    background: radial-gradient(circle, rgba(217, 37, 26, 0.10), transparent);
}

.particle-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-duration: 22s;
    animation-delay: -12s;
    background: linear-gradient(90deg, rgba(241, 242, 242, 0.15), rgba(217, 37, 26, 0.05));
}

.particle-5 {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 40%;
    animation-duration: 16s;
    animation-delay: -3s;
    background: radial-gradient(ellipse, rgba(217, 37, 26, 0.08), transparent);
}

.particle-6 {
    width: 90px;
    height: 90px;
    top: 15%;
    right: 30%;
    animation-duration: 24s;
    animation-delay: -10s;
    background: linear-gradient(225deg, rgba(241, 242, 242, 0.12), rgba(217, 37, 26, 0.06));
}

/* Animação das partículas */
@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-15px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Responsividade para animações */
@media (max-width: 768px) {
    .floating-particles {
        display: none; /* Ocultar partículas em dispositivos móveis para melhor performance */
    }
    
    .combustiveis-ipiranga::before,
    .combustiveis-ipiranga::after {
        animation-duration: 30s; /* Animações mais lentas em mobile */
    }
}

@media (max-width: 480px) {
    .combustiveis-ipiranga::before,
    .combustiveis-ipiranga::after {
        opacity: 0.5; /* Reduzir opacidade em telas pequenas */
    }
}

.combustiveis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

/* Lado Esquerdo - Informações */
.combustiveis-info {
    padding-right: 2rem;
}

.combustiveis-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #D9251A;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.combustiveis-info p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.posto-link {
    color: #D9251A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.posto-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Lista de Combustíveis Clicáveis */
.combustiveis-lista {
    margin-top: 2.5rem;
}

.combustivel-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.combustivel-item:hover {
    padding-left: 0.5rem;
}

.combustivel-item.active {
    padding-left: 0.5rem;
}

.combustivel-icon {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

.combustivel-item.active .combustivel-icon {
    width: 20px;
}

.icon-play {
    color: #D9251A;
    font-size: 0.8rem;
    display: block;
}

.combustivel-nome {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.combustivel-item:hover .combustivel-nome,
.combustivel-item.active .combustivel-nome {
    color: #D9251A;
}

/* Lado Direito - Design Visual */
.combustiveis-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Formas Geométricas */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50px;
    transform-origin: center;
}

/* Formas específicas baseadas na imagem */
.shape-yellow-1 {
    background: linear-gradient(135deg, #F7C700, #ffd700);
    width: 200px;
    height: 120px;
    top: 10%;
    right: 15%;
    transform: rotate(-15deg);
    border-radius: 60px;
}

.shape-orange-1 {
    background: linear-gradient(135deg, #D9251A, #ff4d4d);
    width: 180px;
    height: 100px;
    top: 25%;
    right: 5%;
    transform: rotate(25deg);
    border-radius: 50px;
}

.shape-blue-main {
    background: linear-gradient(135deg, #D9251A, #F7C700);
    width: 320px;
    height: 280px;
    top: 15%;
    left: 25%;
    transform: rotate(-8deg);
    border-radius: 80px;
    z-index: 2;
}

.shape-yellow-2 {
    background: linear-gradient(135deg, #F7C700, #ffd700);
    width: 150px;
    height: 90px;
    bottom: 15%;
    left: 10%;
    transform: rotate(45deg);
    border-radius: 45px;
}

.shape-orange-2 {
    background: linear-gradient(135deg, #D9251A, #ff4d4d);
    width: 220px;
    height: 110px;
    bottom: 5%;
    right: 20%;
    transform: rotate(-20deg);
    border-radius: 55px;
}

/* Card de Informação do Combustível */
.combustivel-card {
    position: relative;
    z-index: 3;
    background: rgba(217, 37, 26, 0.95);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 350px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Mascote da Estrela D'Alva */
.mascote-combustivel {
    position: absolute;
    top: -180px;
    left: -30px;
    width: 160px;
    height: auto;
    z-index: 4;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Ajuste do mascote para mobile */
@media (max-width: 768px) {
    .mascote-combustivel {
        top: -120px;
        left: -20px;
        width: 120px;
    }
    
    /* Aumenta o espaçamento superior do card para dar espaço ao mascote */
    .combustivel-card {
        margin-top: 5rem;
        padding-top: 3rem;
    }
}

.combustivel-header {
    margin-bottom: 1.5rem;
}

.combustivel-logo {
    margin-bottom: 0.5rem;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.combustivel-tipos {
    font-size: 0.75rem;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.combustivel-descricao h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: white;
}

.combustivel-descricao strong {
    color: #ffd700;
}

.saiba-mais-btn {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #60a5fa;
    transition: all 0.3s ease;
}

.saiba-mais-btn:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

/* Animações das formas */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation));
    }
}

.shape-yellow-1 {
    --rotation: -15deg;
    animation: float 6s ease-in-out infinite;
}

.shape-orange-1 {
    --rotation: 25deg;
    animation: float 8s ease-in-out infinite 1s;
}

.shape-blue-main {
    --rotation: -8deg;
    animation: float 10s ease-in-out infinite 2s;
}

.shape-yellow-2 {
    --rotation: 45deg;
    animation: float 7s ease-in-out infinite 3s;
}

.shape-orange-2 {
    --rotation: -20deg;
    animation: float 9s ease-in-out infinite 4s;
}

/* Responsividade */
@media (max-width: 1024px) {
    .combustiveis-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .combustiveis-info {
        padding-right: 0;
        text-align: center;
    }
    
    .combustiveis-visual {
        min-height: 400px;
    }
    
    .shape-blue-main {
        width: 280px;
        height: 240px;
    }
    
    .combustivel-card {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .combustiveis-ipiranga {
        padding: 4rem 0;
    }
    
    .combustiveis-info h2 {
        font-size: 2.5rem;
    }
    
    .combustiveis-visual {
        min-height: 350px;
    }
    
    .shape-blue-main {
        width: 240px;
        height: 200px;
    }
    
    .shape-yellow-1,
    .shape-orange-1,
    .shape-yellow-2,
    .shape-orange-2 {
        width: 120px;
        height: 80px;
    }
    
    .combustivel-card {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .combustiveis-info h2 {
        font-size: 2rem;
    }
    
    .combustivel-nome {
        font-size: 1.25rem;
    }
    
    .combustiveis-visual {
        min-height: 300px;
    }
    
    .shape-blue-main {
        width: 200px;
        height: 160px;
    }
    
    .combustivel-card {
        padding: 1.25rem;
        max-width: 280px;
    }
    
    .combustivel-descricao h3 {
        font-size: 0.9rem;
    }
}

