/* Variáveis e Reset */
:root {
    --primary-color: #0c1a2c; /* Deep Luxury Blue */
    --accent-color: #d4af37;  /* Gold */
    --text-color: #333;
    --light-text: #f4f4f4;
    --white: #ffffff;
    --gray: #f9f9f9;
    --dark-gray: #444;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.subtitle {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'Raleway', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b8962e;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
}

.btn-block:hover {
    background-color: #162a45;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

header.scrolled .nav-links a {
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

header.scrolled .mobile-menu-toggle span {
    background-color: var(--primary-color);
}

/* Hero Section */
/* ============================
   HERO — Luxo Orgânico
   ============================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtleZoom 30s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 26, 44, 0.85) 0%,
        rgba(12, 26, 44, 0.45) 50%,
        rgba(12, 26, 44, 0.25) 100%
    );
}

/* Conteúdo */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: heroFadeIn 1.2s ease-out both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 6px;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0.9;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero h1 em {
    font-family: 'Raleway', serif;
    font-weight: 300;
    font-style: italic;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.85;
    font-weight: 300;
}

/* Botões */
.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}

/* Badges flutuantes — bem leve */
.hero-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 16px 24px;
    border-radius: 60px;
    color: var(--white);
}

.hero-float--left {
    bottom: 12%;
    left: 5%;
    animation: gentleFloat 6s ease-in-out infinite;
}

.hero-float--right {
    bottom: 18%;
    right: 5%;
    animation: gentleFloat 7s ease-in-out 1s infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

.hf-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.hf-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    opacity: 0.85;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .hero-float { display: none; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 2.4rem; }
    .hero p  { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
}

/* Intro Section */
section {
    padding: 100px 0;
}

.intro-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.intro-gallery img:first-child {
    grid-column: span 2;
    border-radius: 8px;
}

.intro-gallery img:not(:first-child) {
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.counters {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.counter-item .counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.counter-item .plus {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.counter-label {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Why Us Premium */
.why-us-premium {
    background-color: #0c1a2c; /* Navy Blue das imagens */
    color: var(--white);
    padding: 100px 0;
}

.why-us-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.why-us-image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.subtitle-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.premium-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.premium-description {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8;
}

.why-us-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-premium-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-premium-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-us-top { grid-template-columns: 1fr; gap: 40px; }
    .premium-title { font-size: 2.5rem; }
    .why-us-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .why-us-features-grid { grid-template-columns: 1fr; }
}

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-image {
    position: relative;
    height: 250px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-image .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.package-content ul {
    margin-bottom: 20px;
}

.package-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.package-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: #888;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Experience Premium Section */
.experiences-premium {
    background-color: var(--white);
    padding: 100px 0;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-premium h2 {
    font-size: 3rem;
    color: #444;
    margin-bottom: 15px;
}

.section-header-premium p {
    color: #777;
    font-size: 1.1rem;
}

.experience-premium-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.exp-premium-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.exp-card-img {
    position: relative;
    height: 10px; /* Hidden or very small, wait, let's look at the image again */
    /* The image shows a placeholder icon in a box, but in the final it should be an image */
    height: 120px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle like the image's placeholder feel or full image? */
}

.exp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color); /* Dourado da paleta */
    color: var(--white);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
}

.exp-card-info {
    padding: 30px;
    flex-grow: 1;
}

.exp-card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.exp-card-info p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Alternate Style with Palette Colors */
.exp-premium-card.alternate {
    background-color: var(--primary-color); /* Azul da paleta */
    color: var(--white);
}

.exp-premium-card.alternate .exp-card-info h3,
.exp-premium-card.alternate .exp-card-info p {
    color: var(--white);
}

.exp-premium-card.alternate .exp-badge {
    background-color: var(--accent-color);
    color: var(--white);
}

.exp-premium-card.alternate .exp-card-img {
    background-color: rgba(255,255,255,0.1);
}

.exp-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .experience-premium-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .experience-premium-cards { grid-template-columns: 1fr; }
}

/* Contact Section */
.contact {
    background-color: var(--gray);
}

.info-items {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
    border-radius: 100% 100% 0 0 / 20px 20px 0 0; /* Suave arredondamento no topo */
}

.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 100%;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Processo (Passo a Passo) */
.process {
    background-color: var(--gray);
    padding: 120px 0;
}

.steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    text-align: left;
    align-items: flex-start;
}

.step-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 12px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer ul li:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3, .grid-4, .experience-grid { grid-template-columns: 1fr; }
    
    .nav-links {
        display: none; /* In main.js we will handle the mobile toggle */
    }
    
    .mobile-menu-toggle { display: flex; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-content { text-align: center; }
    
    .intro-gallery { margin-bottom: 30px; }
}

/* Why Us Features */
.features-grid {
    margin-top: 50px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-item h3 {
    margin: 15px 0 10px;
    color: var(--primary-color);
}

/* Benefícios Premium */
.benefits {
    background-color: var(--white);
}

.benefit-card {
    text-align: center;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Why Us Premium Correction */
.why-us-premium {
    background-color: #0c1a2c;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.why-us-top {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.why-us-image-container {
    flex: 1;
}

.why-us-text-content {
    flex: 1;
}

/* Experience Premium Section Correction */
.experiences-premium {
    background-color: var(--white);
    padding: 120px 0;
}

.experience-premium-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch; /* Garante que os cards tenham a mesma altura */
}

.exp-premium-card {
    height: 100%; /* Ocupa toda a altura da grid */
}

@media (max-width: 1200px) {
    .experience-premium-cards { grid-template-columns: repeat(2, 1fr); }
    .why-us-top { flex-direction: column; text-align: center; gap: 40px; }
}

@media (max-width: 768px) {
    .experience-premium-cards { grid-template-columns: 1fr; }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(12, 26, 44, 0.9), rgba(12, 26, 44, 0.9)), url('https://idmindcorp.com.br/wp-content/uploads/2026/05/Image_fx-10-1-1024x576.webp') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
    color: var(--dark-gray);
    line-height: 1.8;
    flex-grow: 1;
}

.client-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ */
.faq {
    background-color: #f4f7f6;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: #fff;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Icons Adicionais */
.icon-curadoria { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 0c141.4 0 256 114.6 256 256S397.4 512 256 512 0 397.4 0 256 114.6 0 256 0zM127 281.1c0 9.1 5.3 17.3 13.5 21l96 42.7c10.3 4.6 22.2 4.6 32.5 0l96-42.7c8.2-3.7 13.5-11.9 13.5-21V192c0-12.8-10.4-23.2-23.2-23.2h-204.6c-12.8 0-23.2 10.4-23.2 23.2v89.1z"/></svg>'); }
.icon-support { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 80c-132.5 0-240 107.5-240 240v32c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-96c0-17.7-14.3-32-32-32H66c10.4-83.1 81.3-147.3 167-151.6V120c0 13.3 10.7 24 24 24s24-10.7 24-24V72.4c85.7 4.3 156.6 68.5 167 151.6h-14c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32v-32c0-132.5-107.5-240-240-240z"/></svg>'); }
.icon-luxury { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M309 106c11.4-7 19-19.7 19-34 0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 6.1-22.1 6.1-31.2 0l-37.5-25.1c-14.5-9.7-33.1-9.7-47.6 0l-74.8 50c-12.4 8.3-15.8 25.1-7.5 37.6 8.3 12.4 25.1 15.8 37.6 7.5l67.3-45 37.5 25.1c25.4 17 58.8 17 84.1 0l38.4-25.6L336 220.6c25.4 17 58.8 17 84.1 0l37.5-25.1 67.3 45c12.4 8.3 29.3 5 37.6-7.5 8.3-12.4 5-29.3-7.5-37.6l-74.8-50c-14.5-9.7-33.1-9.7-47.6 0l-37.5 25.1c-9.1 6.1-22.1 6.1-31.2 0L309 106zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 53 43 96 96 96h384c53 0 96-43 96-96v-64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32v-64z"/></svg>'); }

[class^="icon-"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-check { background: var(--accent-color); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M7.629 14.571L3.125 10.068 4.414 8.779 7.629 11.993 15.586 4.037 16.875 5.326z"/></svg>'); }
.icon-whatsapp { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg>'); }
.icon-mail { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"/></svg>'); }
.icon-facebook { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"/></svg>'); }
.icon-instagram { mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-43.6 0-79 35.4-79 79s35.4 79 79 79 79-35.4 79-79-35.4-79-79-79zm0 131.5c-29 0-52.5-23.5-52.5-52.5s23.5-52.5 52.5-52.5 52.5 23.5 52.5 52.5-23.5 52.5-52.5 52.5zm134.7-142.2c-5.8-14.7-17.1-26-31.9-31.9-19-7.5-64.2-5.8-82.9-5.8s-63.9-1.7-82.9 5.8c-14.8 5.9-26 17.1-31.9 31.9-7.5 19-5.8 64.2-5.8 82.9s-1.7 63.9 5.8 82.9c5.9 14.8 17.1 26 31.9 31.9 19 7.5 64.2 5.8 82.9 5.8s63.9 1.7 82.9-5.8c14.8-5.9 26-17.1 31.9-31.9 7.5-19 5.8-64.2 5.8-82.9s1.8-63.9-5.8-82.9zM366.5 352c-4.5 12.3-12.3 22.1-24.6 26.6-14.7 5.7-49.3 4.4-67.9 4.4s-53.2 1.3-67.9-4.4c-12.3-4.5-22.1-12.3-26.6-24.6-5.7-14.7-4.4-49.3-4.4-67.9s-1.3-53.2 4.4-67.9c4.5-12.3 12.3-22.1 24.6-26.6 14.7-5.7 49.3-4.4 67.9-4.4s53.2-1.3 67.9 4.4c12.3 4.5 22.1 12.3 26.6 24.6 5.7 14.7 4.4 49.3 4.4 67.9s1.3 53.2-4.4 67.9zm-38.3-199c-10.4 0-18.8 8.4-18.8 18.8s8.4 18.8 18.8 18.8 18.8-8.4 18.8-18.8-8.4-18.8-18.8-18.8z"/></svg>'); }
