/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-yellow: #FDB913;
    --color-yellow-dark: #E5A510;
    --color-blue-light: #A8D8EA;
    --color-blue-dark: #2C5F7C;
    --color-blue-sky: #0EA5E9;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray-dark: #333333;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-gray-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -1px;
}

.logo-highlight {
    color: #4ADE80;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:nth-child(1) {
    border-color: #3B82F6;
}

.nav-link:nth-child(2) {
    border-color: var(--color-yellow);
}

.nav-link:nth-child(3) {
    border-color: #EC4899;
}

.nav-link:nth-child(4) {
    border-color: #10B981;
}

.nav-link:nth-child(5) {
    border-color: #8B5CF6;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.cta-button {
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--color-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: var(--color-blue-light);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #A8D8EA 0%, #7AB8D4 100%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
}

.hero-cta:hover {
    background-color: var(--color-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 185, 19, 0.5);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Problem Section */
.problem-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.section-title-center {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-gray-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.problem-card {
    text-align: center;
}

.problem-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-text {
    font-size: 18px;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.problem-solution {
    font-size: 20px;
    text-align: center;
    color: var(--color-gray-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Scaled Section */
.scaled-section {
    background-color: var(--color-blue-light);
    padding: 80px 0;
}

.section-title-white {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-white);
}

.scaled-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.scaled-subtitle {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-blue-dark);
    margin-bottom: 20px;
}

.scaled-description {
    font-size: 18px;
    color: var(--color-blue-dark);
    line-height: 1.8;
}

.scaled-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.logo-placeholder {
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    color: var(--color-gray-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About Agency Section */
.about-agency-section {
    background-color: var(--color-yellow);
    padding: 80px 0;
}

.about-agency-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.about-agency-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-agency-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 30px;
}

.about-agency-description {
    font-size: 18px;
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background-color: var(--color-gray-light);
    padding: 80px 0;
}

.section-title-center-dark {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-gray-dark);
}

.section-subtitle-center {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-blue-sky);
}

.services-intro {
    font-size: 18px;
    text-align: center;
    color: var(--color-gray-dark);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-gray-dark);
    margin: 20px 20px 10px;
}

.service-description {
    font-size: 16px;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin: 0 20px 20px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #2C5F7C 0%, #1E4A5F 100%);
    padding: 80px 0;
}

.section-title-center-white {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-paragraph {
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image-frame {
    border: 8px solid rgba(253, 185, 19, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Media Section */
.media-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.media-card:hover {
    border-left-width: 6px;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.media-card:hover .media-icon {
    transform: scale(1.1);
}

.media-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--color-blue-sky);
    transition: transform 0.3s ease;
}

.media-icon svg {
    width: 100%;
    height: 100%;
}

.media-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.media-badge-blue { background-color: #3B82F6; }
.media-badge-purple { background-color: #8B5CF6; }
.media-badge-orange { background-color: #F97316; }
.media-badge-green { background-color: #10B981; }
.media-badge-red { background-color: #EF4444; }
.media-badge-teal { background-color: #14B8A6; }

.media-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.media-description {
    font-size: 16px;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.media-link {
    color: var(--color-blue-sky);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.media-link:hover {
    color: var(--color-blue-dark);
    text-decoration: underline;
}

/* Expertise Section */
.expertise-section {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.expertise-icon svg {
    width: 100%;
    height: 100%;
}

.expertise-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.expertise-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-gray-light);
    padding: 80px 0;
}

.contact-intro {
    font-size: 20px;
    text-align: center;
    color: var(--color-gray-dark);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.contact-card-pink { border-color: #EC4899; }
.contact-card-purple { border-color: #8B5CF6; }
.contact-card-orange { border-color: #F97316; }
.contact-card-green { border-color: #10B981; }

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: currentColor;
}

.contact-card-pink .contact-icon { color: #EC4899; }
.contact-card-purple .contact-icon { color: #8B5CF6; }
.contact-card-orange .contact-icon { color: #F97316; }
.contact-card-green .contact-icon { color: #10B981; }

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-gray-dark);
    margin-bottom: 10px;
}

.contact-info {
    font-size: 16px;
    color: var(--color-gray-dark);
    font-weight: 600;
}

/* Offices Section */
.offices-section {
    background: linear-gradient(135deg, #1E4A5F 0%, #2C5F7C 100%);
    padding: 80px 0;
}

.offices-intro {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.office-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-yellow);
    transform: translateY(-5px);
}

.office-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--color-yellow);
}

.office-icon svg {
    width: 100%;
    height: 100%;
}

.office-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.office-address {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.office-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.office-link:hover {
    background-color: var(--color-yellow-dark);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #111827;
    padding: 40px 0;
}

.footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 60px;
    height: 60px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scaled-content {
        grid-template-columns: 1fr;
    }
    
    .about-agency-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title-center,
    .section-title-center-dark {
        font-size: 32px;
    }
    
    .section-title-white,
    .section-title-center-white {
        font-size: 36px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
