/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores */
    --primary-color: #111111;
    --primary-dark: #000000;
    --primary-light: #1f1f1f;
    --secondary-color: #22c55e;
    --accent-color: #10b981;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --background-light: #f3f4f6;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Transições */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    gap: var(--spacing-xl);
}

.nav-logo h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    margin-left: auto;   /* empurra menu para centro-direita */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    padding-left: var(--spacing-lg);
    border-left: 1px solid rgba(0,0,0,0.08);
}

.login-link {
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.85;
    text-decoration: none;
    white-space: nowrap;
    padding-right: var(--spacing-md);
    border-right: 1px solid rgba(0,0,0,0.12);
    transition: opacity var(--transition-normal);
}

.login-link:hover {
    opacity: 1;
}

/* Menu hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-content {
    max-width: 500;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 250;
    margin-bottom: var(--spacing-lg);
    line-height: 1.0;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Portfolio Section */
.portfolio {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    background: white;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.slide-image:hover img {
    transform: scale(1.05);
}

.slide-info {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.slide-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.slide-tags {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: var(--primary-color);
    color: white;
    font-size: var(--font-size-sm);
    border-radius: 20px;
    font-weight: 500;
}

/* Controles do carrossel */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    pointer-events: all;
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-btn svg {
    color: var(--text-primary);
}

/* Indicadores do carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-description p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.skills {
    margin: var(--spacing-xl) 0;
}

.skills h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Estilo do Card em si (agora um swiper-slide) */
.skill-item {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all var(--transition-normal);
    height: 100%; /* Ocupa a altura total do slide */
}

/* 💖 NOVO ESTILO: Efeito de Hover com a cor verde! 💖 */
.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(34, 197, 94, 0.2); /* Sombra mais intensa e na cor do destaque */
    border-color: var(--secondary-color); /* Borda fica verde */
}

/* Ícone */
.skill-icon {
    font-size: var(--font-size-2xl);
    color: var(--secondary-color); /* Ícone sempre verde (ou cor que você preferir) */
    flex-shrink: 0;
}

/* Estilização das Setas de Navegação (para que as setas mudem de cor) */
.skills-carousel-container .swiper-button-prev:hover,
.skills-carousel-container .swiper-button-next:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

/* Estilização da Paginação (Pontos) */
.skills-carousel-container .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}
.skill-item:hover {
    transform: translateY(-2px);
}

.skill-icon {
    font-size: var(--font-size-lg);
}

.about-cta {
    margin-top: var(--spacing-xl);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Hero */
.contact-hero {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-form-container {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: var(--spacing-xl);
}

.form-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-normal);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #ef4444;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    display: none;
}

.form-actions {
    margin-top: var(--spacing-lg);
}

.btn-loading {
    display: none;
}

.success-message {
    text-align: center;
    padding: var(--spacing-2xl);
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: 12px;
    color: #15803d;
}

.success-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.success-message h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-method:last-child {
    margin-bottom: 0;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.method-info p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 8px 16px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-top: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.benefit-icon {
    font-size: var(--font-size-lg);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-info h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-light);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 1. O container da grade de habilidades */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Colunas responsivas */
  gap: 24px; /* Espaçamento entre os cards */
}

/* 2. O card de cada habilidade */
.skill-item {
  background-color: #f8f9fa; /* Cor de fundo do card */
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e9ecef;
  
  /* A MÁGICA ACONTECE AQUI: */
  display: flex;
  flex-direction: column; /* Empilha o .skill-header e a .skill-description */
  gap: 16px; /* Cria um espaço entre o header e a descrição */
}

/* 3. O cabeçalho que agrupa ícone e título */
.skill-header {
  display: flex;
  align-items: center; /* Alinha ícone e título na mesma linha */
  gap: 12px; /* Espaço entre o ícone e o título */
}

/* 4. Estilos para o ícone, título e descrição */
.skill-icon {
  font-size: 1.5rem; /* Ajusta o tamanho do emoji/ícone */
}

.skill-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0; /* Remove margens padrão do h3 */
  color: #333;
}

.skill-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0; /* Remove margens padrão do p */
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  background: linear-gradient(180deg, #0b0b22 0%, #111133 100%);
  color: #fff;
  padding: 100px 0;
}

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

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #b5b5d1;
  font-size: 1.1rem;
}

/* ===== SLIDES ===== */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.slide-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slide-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ===== IMAGE ===== */
.slide-image {
  position: relative;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide-content:hover .slide-image img {
  transform: scale(1.06);
}

/* Overlay com gradiente */
.slide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 34, 0.7), transparent 80%);
  opacity: 0.8;
}

/* ===== INFO ===== */
.slide-info {
  padding: 25px 30px;
}

.slide-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.slide-info p {
  font-size: 1rem;
  color: #b8b8d6;
  margin-bottom: 15px;
}

.slide-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(229, 9, 20, 0.15);
  color: #ff2a3b;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.tag:hover {
  background: rgba(229, 9, 20, 0.3);
}

/* ===== CONTROLS ===== */
.swiper-button-prev,
.swiper-button-next {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(229, 9, 20, 0.8);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
  color: #fff;
}

/* ===== PAGINATION ===== */
.swiper-pagination-bullet {
  background: #444;
  opacity: 0.6;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #e50914;
  opacity: 1;
  transform: scale(1.2);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .slide-info {
    text-align: center;
  }
  .slide-tags {
    justify-content: center;
  }
}


/* Estilo dos cards de suporte */
.support .support-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    width: 100%;
    height: 100%; /* Ocupa toda a altura do slide */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-card .support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Cor e estilo das setas e pontos de navegação */
:root {
  --swiper-theme-color: #e50914; /* vermelho elegante, combina com o estilo premium */
}


.swiper-button-next,
.swiper-button-prev {
    color: var(--swiper-theme-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--swiper-theme-color);
}

.faq-section {
  background-color: transparent;
  padding: 4rem 1rem;
  color: #f9fafb;
  font-family: 'Inter', sans-serif;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.faq-section h2 span {
  color: #ec4899;
}

.faq-section h2 strong {
  color: #ec4899; /* rosa vibrante */
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #063070;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.accordion-question {
  background: none;
  border: none;
  color: #f3f4f7;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-question .icon {
  transition: transform 0.3s ease;
}

.accordion-answer {
  display: none;
  margin-top: 1rem;
  color: #f3f4f7;
  font-size: 0.95rem;
  line-height: 1.5;
}

.accordion-item.active .accordion-answer {
  display: block;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-question::after {
  content: '−';
}

/* Container principal da seção Sobre */
.about-container {
  padding: 4rem 1rem;
}

/* Layout lado a lado */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.about-image {
  flex: 1 1 35%;
  text-align: center;
}

.image-placeholder {
  max-width: 250px;
  margin: 0 auto;
}

.image-placeholder svg {
  width: 100%;
  height: auto;
}

/* Grid 2x2 nas skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Estilo individual das caixinhas */
.skill-item {
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-4px);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.skill-icon {
  font-size: 1.2rem;
}

.skill-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.skill-description {
  font-size: 0.95rem;
  color: #444;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary, #ffffff);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color, #10b981);
  margin: 2rem auto 0;
  border-radius: 6px;
}

/* ============================================= */
/* Estilos da Seção de Preços           */
/* ============================================= */

/* Estilo geral para o contêiner de cada cartão de preço */
.pricing-card {
    background-color: #ffffff; /* Fundo branco para o cartão */
    border: 1px solid #e9ecef; /* Borda cinza bem clara e sutil */
    border-radius: 12px;       /* Bordas um pouco mais arredondadas */
    padding: 2rem;             /* Espaçamento interno generoso */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Sombra suave para efeito de profundidade */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave para o hover */
}

/* Efeito de elevação ao passar o mouse */
.pricing-card:hover {
    transform: translateY(-8px); /* Move o cartão para cima no hover */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Sombra mais pronunciada */
}

/* Destaque para o plano recomendado (adicionado via JS) */
.pricing-card.recommended {
    border-color: #128C7E; /* Cor da borda roxa para destaque */
    transform: scale(1.05); /* Deixa o cartão um pouco maior */
    box-shadow: 0 8px 24px rgba(103, 58, 183, 0.15); /* Sombra com a cor do destaque */
    z-index: 10;
    position: relative;
}

/* Título do plano (ex: "Site por Assinatura") */
.pricing-card .heading-size-lg {
    font-size: 1.6rem;
    font-weight: 600;
    color: #212529; /* Cor de texto escura (quase preto) */
}

/* Parágrafo de descrição do plano */
.pricing-card .item-text p {
    color: #6c757d; /* Cor de texto cinza para a descrição */
    min-height: 50px; /* Garante alinhamento vertical entre os cartões */
}

/* Div que envolve a área do preço */
.pricing-card .price-section {
    border-top: 1px solid #f1f3f5;
    border-bottom: 1px solid #f1f3f5;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
}

/* Etiqueta "A PARTIR DE" */
.pricing-card .price-tag {
    background-color: #f8f9fa; /* Fundo cinza bem claro */
    color: #6c757d;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block; /* Para que o padding funcione corretamente */
}

/* Estilo do valor principal (ex: R$149,00) */
.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 700;
    color: #673ab7; /* Cor roxa de destaque */
    line-height: 1.2;
    margin-top: 0.5rem;
}

/* Estilos para "R$", ",00" e "/mês" */
.pricing-card .price .font-weight-400 {
    font-size: 1.5rem; /* Tamanho menor para os detalhes do preço */
    font-weight: 400 !important; /* Força a fonte a ser normal */
    color: #495057; /* Um pouco mais escuro que a descrição */
}

/* Lista de benefícios */
.benefits-list {
    list-style: none; /* Remove os marcadores padrão da lista */
    padding: 0;
    text-align: left;
    flex-grow: 1; /* Faz esta área crescer e empurrar o botão para baixo */
}

.benefits-list li {
    display: flex;
    align-items: flex-start; /* Alinha o ícone com o topo do texto */
    gap: 0.75rem; /* Espaço entre o ícone e o texto */
    margin-bottom: 1rem;
    color: #495057;
}

.benefits-list img {
    height: 20px;
    margin-top: 0.2rem; /* Pequeno ajuste para alinhar perfeitamente com o texto */
}

/* Botão principal de ação (ex: "Comprar agora") */
.btn-style-01 {
    background-color: #0d0a13; /* Cor roxa principal */
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%; /* Ocupa toda a largura disponível */
    box-sizing: border-box; /* Garante que o padding não estoure a largura */
    justify-content: center; /* Centraliza o texto (já que é flex) */
}

.btn-style-01:hover {
    background-color: #128C7E; /* Roxo mais escuro no hover */
    transform: scale(1.03); /* Leve aumento no hover */
}

/* Botão inferior "Falar Com Especialista" */
.btn-style-03 {
    background-color: #25d366; /* Cor oficial do WhatsApp */
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    gap: 0.75rem;
    transition: background-color 0.3s ease;
}

.btn-style-03:hover {
    background-color: #128C7E; /* Cor mais escura do WhatsApp */
}

html {
  scroll-behavior: smooth;
}

/* Estilo do Botão Voltar ao Topo */
#btn-voltar-topo {
  position: fixed; /* Fica fixo na tela */
  bottom: 20px;    /* A 20px do rodapé */
  right: 20px;     /* A 20px da borda direita */
  z-index: 1000;   /* Garante que ele fique acima de outros elementos */
  
  /* Aparência do botão */
  background-color: #007bff; /* Cor de fundo (ex: azul) */
  color: white;              /* Cor do ícone */
  border: none;
  border-radius: 50%;        /* Deixa ele redondo */
  width: 50px;               /* Largura */
  height: 50px;              /* Altura */
  
  /* Centraliza o ícone SVG dentro do círculo */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Animação suave */
  text-decoration: none;
  transition: opacity 0.4s ease-in-out, transform 0.2s ease;

  /* Estado inicial: INVISÍVEL */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px); /* Efeito sutil de subida */
}

/* Efeito ao passar o mouse */
#btn-voltar-topo:hover {
  background-color: #0056b3; /* Cor mais escura */
}

/* Classe que o JavaScript vai adicionar para TORNAR VISÍVEL */
#btn-voltar-topo.visivel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================================================== */
/* ESTILOS PARA A GRADE DE ESPECIALIDADES             */
/* (VERSÃO COM 4 COLUNAS EM DESKTOPS)                 */
/* */
/* Por favor, SUBSTITUA a regra .skills-grid anterior */
/* por esta nova regra completa.                      */
/* ================================================== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
    align-items: start; /* <- ISSO aqui resolve o problema de altura forçada */
}

.skill-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skill-icon {
    font-size: 1.5rem;
}

.skill-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

.skill-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444;
}
@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.cta-button-container {
  /* Alinha o botão verticalmente ao centro da sua "célula" na grade */
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * Garante que o contêiner tenha um tamanho definido e 
 * sirva como referência para a imagem.
*/
.image-placeholder {
  /* Defina a largura e altura que desejar para o círculo */
  width: 200px; 
  height: 200px;
  position: relative; /* Importante para o alinhamento da imagem */
  border-radius: 50%; /* Deixa o próprio contêiner redondo */
}

/*
 * Estilos para a sua foto de perfil.
*/
.foto-perfil {
  width: 100%;      /* Faz a imagem ocupar toda a largura do contêiner */
  height: auto;     /* Faz a imagem ocupar toda a altura do contêiner */
  object-fit: cover;/* ESSENCIAL: Redimensiona a imagem para preencher o espaço 
                        sem distorcer. A imagem será cortada se necessário para caber. */
  border-radius: 50%; /* A 'mágica' que deixa a imagem perfeitamente redonda */
}

.price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

.price .currency {
  font-size: 1rem;
  font-weight: 400;
}

.price .main-price {
  font-size: 1.8rem;
  font-weight: 700;
}

.price .suffix {
  font-size: 1rem;
  font-weight: 400;
}

.developed-by {
    font-size: 13px;
    color: #a0a0a0; /* Uma cor suave que combine com o rodapé */
}

.developed-by a {
    color: #fff; /* Cor de destaque para o seu link */
    font-weight: 600;
    text-decoration: none;
}

.developed-by a:hover {
    text-decoration: underline;
}

.slide-image {
    position: relative;
}

.whatsapp-float {
    position: fixed; /* Deixa o botão fixo na tela */
    bottom: 25px; /* Distância da parte de baixo */
    left: 25px; /* Distância da parte da direita */
    
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #FFF; /* Cor do ícone */
    
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Deixa o botão redondo */
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidade */
    z-index: 100; /* Garante que ele fique acima de outros elementos */
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Aumenta um pouco de tamanho ao passar o mouse */
}

/* ==================== HEADER ==================== */
.header {
  background: #0b0b22;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: lowercase;
  text-decoration: none;
}
.logo-main {
  color: #374151;
}
.logo-accent {
  color: #078207;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #262624;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #078207;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  background: #141436;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  min-width: 180px;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(223, 6, 6, 0.05);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Right buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.login-link {
  color: #212621;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.login-link:hover {
  color: #078207;
}

.btn-primary {
  background: #e50914;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #078207;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    background: #0b0b22;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 1.5rem;
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: linear-gradient(180deg, #0b0b22 0%, #111133 100%);
  color: #fff;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-title span {
  color: #e50914;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  gap: 2rem;
  color: #b8b8ff;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #078207;
  color: #ffffff;
}

.btn-secondary {
  border: 1px solid #a8aaa8;
  color: #fff;
  background: #010e09f8;
}

.btn-primary:hover {
  background: #063070;
}

.btn-secondary:hover {
  border-color: #063070;
  color: #078207;
}

/* Hero Image */
.hero-image img {
  width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 90%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ================================================== */
/* NOVO ESTILO: CARROSSEL DE SKILLS (Flyer Cards)     */
/* ================================================== */

/* Container do Carrossel (para controle de largura e margem) */
.skills-carousel-container {
    padding: 0 40px; /* Espaço para as setas laterais */
    margin-top: var(--spacing-lg);
}

/* Estilo do SLIDE (que é o seu card) */
.skills-carousel-container .swiper-slide {
    height: auto; /* Permite que os cards tenham alturas diferentes (Flexbox ou Grid resolvem o alinhamento) */
    display: flex; /* Garante que o conteúdo dentro do slide esteja alinhado */
    align-items: stretch; /* Essencial: Garante que todos os slides/cards tenham a mesma altura */
}

/* Estilo do Card em si (agora um swiper-slide) */
.skill-item {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinha o conteúdo ao topo */
    transition: all var(--transition-normal);
    height: 100%; /* Ocupa a altura total do slide */
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

/* Header */
.skill-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Ícone */
.skill-icon {
    font-size: var(--font-size-2xl);
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Título */
.skill-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Descrição */
.skill-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.5;
    /* flex-grow: 1; /* Opcional: Empurra o rodapé para baixo se houvesse um */
}

/* Estilização das Setas de Navegação */
.skills-carousel-container .swiper-button-prev,
.skills-carousel-container .swiper-button-next {
    color: var(--primary-color);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.skills-carousel-container .swiper-button-prev:hover,
.skills-carousel-container .swiper-button-next:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.skills-carousel-container .swiper-button-prev::after,
.skills-carousel-container .swiper-button-next::after {
    font-size: var(--font-size-base);
    font-weight: 900;
}

/* Estilização da Paginação (Pontos) */
.skills-carousel-container .swiper-pagination-bullet {
    background: var(--border-color);
    opacity: 1;
}

.skills-carousel-container .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Correção de Responsividade para Mobile */
@media (max-width: 600px) {
    .skills-carousel-container {
        padding: 0 10px; /* Reduz o padding para ganhar espaço no mobile */
    }

    .skills-carousel-container .swiper-button-prev,
    .skills-carousel-container .swiper-button-next {
        display: none; /* Esconde as setas no mobile */
    }
}

/* ================================================== */
/* NOVO ESTILO DA SEÇÃO DE GARANTIA (Visão de Selo e Texto) */
/* ================================================== */
.guarantee-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-white); /* Fundo branco como na referência */
    color: var(--text-primary); /* Cor do texto padrão */
    text-align: center; /* Alinhamento geral */
}

.guarantee-content {
    display: flex; /* ESSENCIAL: Para as duas colunas: selo e texto */
    align-items: center; /* Alinha verticalmente no centro */
    justify-content: space-between; /* Distribui o espaço entre as colunas */
    max-width: 1100px; /* Largura máxima para o conteúdo */
    margin: 0 auto;
    gap: var(--spacing-4xl); /* Espaço generoso entre as colunas */
    flex-wrap: wrap; /* Mantém a quebra para responsividade no mobile */
    text-align: left; /* Restaura o alinhamento para o texto dentro das colunas */
}

/* Coluna do Selo (35% de largura) */
.guarantee-seal-col {
    flex: 0 0 35%; /* Ocupa 35% do espaço */
    min-width: 250px; 
    display: flex;
    justify-content: center; /* Centraliza o selo na coluna */
    align-items: center;
}

.guarantee-seal-image {
    max-width: 100%; /* Garante que a imagem seja responsiva */
    height: auto;
    object-fit: contain; 
}

/* Coluna do Texto e Botão (55% de largura) */
.guarantee-text-col {
    flex: 0 0 55%; /* Ocupa 55% do espaço */
    min-width: 300px; 
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.guarantee-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm); 
}

.guarantee-description {
    font-size: var(--font-size-lg); 
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* Estilo do Botão Principal da Garantia */
.guarantee-btn {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
    gap: var(--spacing-sm); 
    font-size: var(--font-size-lg);
    max-width: 300px; 
}

.guarantee-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guarantee-btn .fas {
    font-size: var(--font-size-base);
}

/* Responsividade para telas menores (faz as colunas quebrarem e centralizarem) */
@media (max-width: 992px) {
    .guarantee-content {
        flex-direction: column; 
        text-align: center; 
        gap: var(--spacing-2xl);
    }
    .guarantee-seal-col, .guarantee-text-col {
        min-width: unset; 
        width: 100%;
    }
    .guarantee-seal-image {
        max-width: 300px; 
    }
    .guarantee-title {
        font-size: var(--font-size-2xl);
    }
    .guarantee-description {
        font-size: var(--font-size-base);
    }
    .guarantee-btn {
        max-width: 250px; 
        margin: 0 auto; 
    }
}