/* ============================================
   HOSTING PRO - STYLESHEET
   Design: Minimalismo Tecnológico com Gradientes Sutis
   Paleta: Azul Profundo (#0F3A7D) + Ciano (#00D9FF)
   ============================================ */

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

:root {
    --primary-blue: #0F3A7D;
    --primary-cyan: #00D9FF;
    --blue-light: #1E5BA8;
    --blue-lighter: #2D7BC4;
    --gray-dark: #1A1A1A;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #E8E8E8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 58, 125, 0.1);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
}

.logo-title {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 0;
    display: none;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--primary-cyan);
    margin: 0;
    display: none;
}

@media (min-width: 640px) {
    .logo-title {
        display: block;
    }
    .logo-subtitle {
        display: block;
    }
}

.nav-desktop {
    display: none;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.cta-button {
    display: none;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .cta-button {
        display: block;
    }
}

.cta-button:hover {
    background: var(--blue-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

.cta-button-mobile {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-mobile:hover {
    background: var(--blue-light);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 58, 125, 0.9), rgba(15, 58, 125, 0.8), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, var(--primary-cyan), #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-cyan);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #00C5E0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 1s both;
}

@media (min-width: 768px) {
    .trust-indicators {
        flex-direction: row;
        gap: 48px;
    }
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.indicator-icon {
    font-size: 24px;
}

.indicator-title {
    color: var(--white);
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.indicator-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 48px;
    }
}

.section-header p {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 217, 255, 0.02) 100%);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin: 0;
}

.feature-accent {
    height: 3px;
    width: 48px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 2px;
    margin-top: 16px;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-accent {
    width: 100%;
}

.features-cta {
    text-align: center;
}

.features-cta p {
    color: var(--gray-medium);
    margin-bottom: 24px;
    font-size: 16px;
}

/* ============================================
   PLANS SECTION
   ============================================ */

.plans {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--white), rgba(0, 217, 255, 0.05));
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-md);
}

.plan-card-highlighted {
    border: 2px solid var(--primary-cyan);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .plan-card-highlighted {
        transform: scale(1.05);
    }
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.plan-name {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.plan-description {
    color: var(--gray-medium);
    font-size: 14px;
    margin-bottom: 24px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
}

.period {
    color: var(--gray-medium);
}

.plan-billing {
    font-size: 12px;
    color: var(--gray-medium);
    margin-bottom: 24px;
}

.btn-plan {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    margin-bottom: 24px;
    justify-content: center;
}

.btn-plan:hover {
    background: var(--blue-light);
}

.btn-plan-highlighted {
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
}

.btn-plan-highlighted:hover {
    box-shadow: var(--shadow-lg);
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-dark);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--primary-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.plans-info {
    text-align: center;
}

.plans-info p {
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.plans-info strong {
    color: var(--primary-blue);
}

.link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: var(--primary-blue);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 80px 0;
    background: var(--white);
}

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

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-cyan);
}

.contact-item p {
    color: var(--gray-medium);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-cyan);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-cyan);
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .plan-card-highlighted {
        transform: scale(1);
    }
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(0, 217, 255, 0.05), var(--white));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-content h2 {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.about-intro {
    font-size: 18px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-cyan);
    display: block;
    margin-bottom: 8px;
}

.highlight-text {
    font-size: 14px;
    color: var(--gray-medium);
}

.about-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-top: 32px;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-list li {
    padding: 12px 0;
    color: var(--gray-dark);
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li:before {
    content: "✓";
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 18px;
}

.info-card {
    padding: 32px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 14px;
}

.info-item p {
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-blue);
}

.footer-contact {
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-button svg {
    width: 28px;
    height: 28px;
    fill: white;
    stroke: white;
}

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

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 26px;
        height: 26px;
    }
}
