/* Estilos Ultra Premium para Transporte Executivo - ABH Motoboys */

/* Variáveis CSS Premium */
:root {
    --executive-gradient: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    --executive-gradient-hover: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --executive-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --executive-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    --premium-shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.2);
    --premium-border-radius: 20px;
    --premium-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --premium-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --premium-backdrop: blur(20px);
}

/* Animações Premium */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Classes de Animação */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Header Premium */
header {
    background: var(--executive-gradient);
    backdrop-filter: var(--premium-backdrop);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--premium-transition);
    transform: translateY(0);
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    transition: var(--premium-transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Navegação Premium */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Hero Section Premium */
.executive-hero {
    background: var(--executive-dark), url('../img/executivo.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.executive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 64, 175, 0.6) 100%);
    z-index: 1;
}

.executive-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.executive-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 3;
    text-align: center;
}

.executive-hero .hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: var(--premium-text-shadow);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.executive-hero .hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão CTA Premium */
.cta-button {
    display: inline-block;
    background: var(--executive-gold);
    color: #1e3a8a;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--premium-transition);
    box-shadow: var(--premium-shadow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--executive-gradient);
    transition: var(--premium-transition);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: white;
}

/* Content Section Premium */
.executive-content {
    background: white;
    padding: 6rem 0;
    position: relative;
    margin-top: -5rem;
    border-radius: 30px 30px 0 0;
    box-shadow: var(--premium-shadow);
    z-index: 4;
}

.executive-content h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e3a8a;
    position: relative;
}

.executive-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--executive-gold);
    border-radius: 2px;
}

/* Container Premium */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Grid Premium */
.executive-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.executive-content .service-card {
    background: white;
    border-radius: var(--premium-border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--premium-shadow);
    transition: var(--premium-transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.executive-content .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--executive-gradient);
    transform: scaleX(0);
    transition: var(--premium-transition);
}

.executive-content .service-card:hover::before {
    transform: scaleX(1);
}

.executive-content .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-shadow-hover);
}

.executive-content .service-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    background: var(--executive-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.executive-content .service-card h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.executive-content .service-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* CTA Section Premium */
.cta-section {
    background: var(--executive-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: -2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: var(--premium-text-shadow);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.cta-section .cta-button {
    background: white;
    color: #1e3a8a;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--premium-transition);
    box-shadow: var(--premium-shadow);
    display: inline-block;
    border: 2px solid transparent;
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Contact Section Premium */
#contato.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
}

#contato.contact h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

#contato .contact-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: var(--premium-border-radius);
    box-shadow: var(--premium-shadow);
    overflow: hidden;
}

#contato .contact-info {
    padding: 3rem;
}

#contato .contact-info h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

#contato .contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

#contato .contact-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: var(--premium-transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 80px;
}

#contato .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
    background: var(--executive-gradient);
    color: white;
}

#contato .contact-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

#contato .contact-item:hover h4,
#contato .contact-item:hover a {
    color: white;
}

#contato .contact-item i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-right: 1rem;
    background: rgba(30, 58, 138, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--premium-transition);
}

#contato .contact-item-content {
    flex: 1;
}

#contato .contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #1e3a8a;
    font-weight: 600;
    transition: var(--premium-transition);
}

#contato .contact-item a {
    display: inline-block;
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    transition: var(--premium-transition);
    font-size: 0.95rem;
    word-break: break-all;
    line-height: 1.3;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Estilo específico para email */
#contato .contact-item a[href^="mailto:"] {
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

#contato .contact-item a:hover {
    color: #3b82f6;
}

#contato .contact-description {
    background: var(--executive-gradient);
    color: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 0 0 var(--premium-border-radius) var(--premium-border-radius);
}

#contato .contact-description p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

#contato .contact-button {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--premium-transition);
    display: inline-block;
    border: 2px solid transparent;
}

#contato .contact-button:hover {
    transform: translateY(-2px);
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Float Premium */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.8rem;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--premium-transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: white;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--premium-transition);
}

.whatsapp-float:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

/* Footer Premium */
footer {
    background: var(--executive-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--executive-gold);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
    font-weight: 400;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #fbbf24;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

/* Responsividade Premium */
@media (max-width: 768px) {
    .executive-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .executive-hero .hero-content p {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--executive-gradient);
        backdrop-filter: var(--premium-backdrop);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        transition: var(--premium-transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .executive-content {
        padding: 4rem 0;
        margin-top: -3rem;
    }

    .executive-content h2 {
        font-size: 2.5rem;
    }

    .executive-content .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .executive-content .service-card {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    #contato.contact {
        padding: 4rem 0;
    }

    #contato.contact h2 {
        font-size: 2.5rem;
    }

    #contato .contact-info {
        padding: 2rem;
    }

    #contato .contact-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #contato .contact-item {
        padding: 1.2rem;
        min-height: 70px;
    }

    #contato .contact-item i {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        margin-right: 0.8rem;
    }

    #contato .contact-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    #contato .contact-item a {
        font-size: 0.85rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        padding: 0.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .executive-hero .hero-content h1 {
        font-size: 2rem;
    }

    .executive-hero .hero-content p {
        font-size: 1rem;
    }

    .executive-content h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    #contato.contact h2 {
        font-size: 2rem;
    }

    .executive-content .service-card {
        padding: 1.5rem 1rem;
    }

    #contato .contact-item {
        padding: 1rem;
        min-height: 65px;
    }

    #contato .contact-item i {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
        margin-right: 0.7rem;
    }

    #contato .contact-item h4 {
        font-size: 0.85rem;
    }

    #contato .contact-item a {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        padding: 0.5rem;
    }
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .mobile-menu {
        display: none;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--executive-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

body.loaded .preloader {
    opacity: 0;
    pointer-events: none;
}

body.loaded .executive-hero .hero-content {
    animation: fadeInUp 1s ease-out;
} 