/*
Theme Name: Grupo MYR Corporate
Theme URI: https://grupomyr.com.br
Author: Grupo MYR
Author URI: https://grupomyr.com.br
Description: Tema corporativo do Grupo MYR — Soluções Sustentáveis de Classe Mundial. Design "Global Impact" com paleta oficial da marca (Verde Myr #007680, Dark Teal #0A2E36, Bege #dcdeda).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grupomyr
Tags: corporate, sustainability, esg, one-column, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============================================
   GRUPO MYR — DESIGN SYSTEM
   Paleta: Verde Myr (#007680) + Dark Teal (#0A2E36) + Bege (#dcdeda) + Verde 20 anos (#48bbc0)
   Tipografia: Cabin (títulos) + Roboto (corpo)
   ============================================ */

:root {
  --myr-verde: #007680;
  --myr-verde-20: #48bbc0;
  --myr-dark-teal: #0A2E36;
  --myr-cinza: #787878;
  --myr-bege: #dcdeda;
  --myr-bg-light: #F5F5F3;
  --myr-white: #ffffff;
  --myr-text-dark: #1a1a1a;
  --myr-text-body: #4a4a4a;
  --myr-text-muted: #6b7280;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--myr-text-dark);
  background-color: var(--myr-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s var(--ease-out);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  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; }
}

/* ============================================
   SECTION LABEL (reusable pattern)
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label--center {
  justify-content: center;
}

.section-label__line {
  width: 2.5rem;
  height: 2px;
  background: var(--myr-verde);
}

.section-label__text {
  color: var(--myr-verde);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s var(--ease-out);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(10, 46, 54, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar__logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .navbar__links { display: flex; }
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s var(--ease-out);
}

.navbar__links a:hover {
  color: var(--myr-verde);
}

.navbar__cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--myr-verde);
  color: var(--myr-white) !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s var(--ease-out);
}

.navbar__cta:hover {
  background: var(--myr-verde-20);
  box-shadow: 0 0 20px rgba(0, 184, 148, 0.3);
}

.navbar__mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .navbar__mobile-toggle { display: none; }
}

.navbar__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.navbar__mobile-menu {
  display: none;
  background: rgba(10, 46, 54, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.navbar__mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .navbar__mobile-menu { display: none !important; }
}

.navbar__mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.navbar__mobile-menu a:hover {
  color: var(--myr-verde);
}

.navbar__mobile-cta {
  display: block;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--myr-verde);
  color: var(--myr-white) !important;
  text-align: center;
  font-weight: 600;
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 46, 54, 0.9), rgba(10, 46, 54, 0.7), rgba(10, 46, 54, 0.4));
}

.hero__overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--myr-dark-teal), transparent, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__subtitle-line {
  width: 3rem;
  height: 2px;
  background: var(--myr-verde);
}

.hero__subtitle-text {
  color: var(--myr-verde);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--myr-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero__title { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 4.5rem; }
}

.hero__title span {
  background: linear-gradient(to right, var(--myr-verde), var(--myr-verde-20));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero__description { font-size: 1.25rem; }
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: var(--myr-verde);
  color: var(--myr-white);
  font-weight: 600;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.btn-primary:hover {
  background: var(--myr-verde-20);
  box-shadow: 0 0 30px rgba(0, 184, 148, 0.3);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary svg {
  transition: transform 0.2s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: transparent;
  color: var(--myr-white);
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.btn-outline:hover {
  border-color: var(--myr-verde);
  color: var(--myr-verde);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  color: rgba(255, 255, 255, 0.5);
  width: 28px;
  height: 28px;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 6rem 0;
  background: var(--myr-white);
}

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

.about__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.about__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .about__title { font-size: 3rem; }
}

.about__title span {
  color: var(--myr-verde);
}

.about__text {
  color: var(--myr-text-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 46, 54, 0.05);
  border-radius: 2px;
}

.about__badge svg {
  color: var(--myr-verde);
  width: 18px;
  height: 18px;
}

.about__badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--myr-text-body);
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: 2px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about__image img { height: 500px; }
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 46, 54, 0.3), transparent);
}

.about__stat-box {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--myr-dark-teal);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about__stat-box p:first-child {
  color: var(--myr-verde);
  font-size: 1.875rem;
  font-weight: 700;
  font-family: 'Cabin', sans-serif;
}

.about__stat-box p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership {
  padding: 6rem 0;
  background: var(--myr-bg-light);
}

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

.leadership__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  text-align: center;
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .leadership__title { font-size: 3rem; }
}

.leadership__grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

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

.leader-card {
  background: var(--myr-white);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(10, 46, 54, 0.05);
  transition: box-shadow 0.3s var(--ease-out);
}

@media (min-width: 1024px) {
  .leader-card { padding: 2.5rem; }
}

.leader-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.leader-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.leader-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--myr-verde), var(--myr-dark-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--myr-white);
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Cabin', sans-serif;
}

.leader-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--myr-text-dark);
}

.leader-card__role {
  color: var(--myr-verde);
  font-weight: 500;
  font-size: 0.875rem;
}

.leader-card__credentials {
  color: var(--myr-text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.leader-card__media {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 46, 54, 0.05);
}

.leader-card__media svg {
  color: var(--myr-verde);
  width: 16px;
  height: 16px;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.leader-card__media p {
  color: var(--myr-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--myr-dark-teal);
}

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

.services__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-white);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .services__title { font-size: 3rem; }
}

.services__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.services__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(0, 118, 128, 0.4);
  box-shadow: 0 0 30px rgba(0, 184, 148, 0.1);
}

.service-card__image {
  height: 12rem;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--myr-dark-teal), transparent);
}

.service-card__body {
  padding: 1.75rem;
}

.service-card__body--with-image {
  position: relative;
  margin-top: -2rem;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(0, 118, 128, 0.1);
  margin-bottom: 1rem;
  transition: background 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: rgba(0, 118, 128, 0.2);
}

.service-card__icon svg {
  color: var(--myr-verde);
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--myr-white);
  margin-bottom: 0.75rem;
}

.service-card__description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================
   ECOSYSTEM SECTION
   ============================================ */
.ecosystem {
  padding: 6rem 0;
  background: var(--myr-white);
}

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

.ecosystem__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .ecosystem__title { font-size: 3rem; }
}

.ecosystem__subtitle {
  color: var(--myr-text-muted);
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.ecosystem__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ecosystem__grid { grid-template-columns: 1fr 1fr; }
}

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

.ecosystem-card {
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid rgba(10, 46, 54, 0.08);
  background: var(--myr-bg-light);
  transition: all 0.3s var(--ease-out);
}

.ecosystem-card:hover {
  border-color: rgba(0, 118, 128, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ecosystem-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s var(--ease-out);
}

.ecosystem-card:hover .ecosystem-card__name {
  color: var(--myr-verde);
}

.ecosystem-card__description {
  color: var(--myr-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact {
  padding: 6rem 0;
  background: var(--myr-dark-teal);
  position: relative;
  overflow: hidden;
}

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

.impact__glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 118, 128, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.impact__glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 118, 128, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.impact__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-white);
  text-align: center;
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .impact__title { font-size: 3rem; }
}

.impact__grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .impact__grid { grid-template-columns: 1fr 1fr; }
}

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

.impact-stat {
  text-align: center;
  padding: 2rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s var(--ease-out);
}

.impact-stat:hover {
  border-color: rgba(0, 118, 128, 0.3);
}

.impact-stat__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--myr-verde);
  font-family: 'Cabin', sans-serif;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .impact-stat__value { font-size: 3rem; }
}

.impact-stat__label {
  color: var(--myr-white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.impact-stat__sublabel {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.impact__clients {
  margin-top: 5rem;
}

.impact__clients-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.impact__clients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
}

.impact__clients-list span:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MEDIA SECTION
   ============================================ */
.media-section {
  padding: 6rem 0;
  background: var(--myr-dark-teal);
}

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

.media-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-white);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .media-section__title { font-size: 3rem; }
}

.media-section__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.media-section__videos {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

.video-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-out);
}

.video-card:hover {
  border-color: rgba(0, 118, 128, 0.4);
}

.video-card__thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--myr-dark-teal);
}

.video-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease-out);
}

.video-card:hover .video-card__thumbnail img {
  opacity: 1;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 118, 128, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}

.video-card:hover .video-card__play-btn {
  transform: scale(1.1);
}

.video-card__play-btn svg {
  color: var(--myr-white);
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.video-card__info {
  padding: 1.25rem;
}

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

.video-card__source svg {
  color: var(--myr-verde);
  width: 14px;
  height: 14px;
}

.video-card__source span {
  color: var(--myr-verde);
  font-size: 0.75rem;
  font-weight: 500;
}

.video-card__title {
  color: var(--myr-white);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s var(--ease-out);
}

.video-card:hover .video-card__title {
  color: var(--myr-verde);
}

.media-presence {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .media-presence { grid-template-columns: 1fr 1fr; }
}

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

.media-presence__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s var(--ease-out);
}

.media-presence__item:hover {
  border-color: rgba(0, 118, 128, 0.3);
}

.media-presence__item > svg:first-child {
  color: var(--myr-verde);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.media-presence__name {
  color: var(--myr-white);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s var(--ease-out);
}

.media-presence__item:hover .media-presence__name {
  color: var(--myr-verde);
}

.media-presence__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.media-presence__external {
  color: rgba(255, 255, 255, 0.3);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.125rem;
}

.media-section__youtube-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.media-section__youtube-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}

.media-section__youtube-cta a:hover {
  color: var(--myr-verde);
}

.media-section__youtube-cta svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   INSIGHTS SECTION (BLOG)
   ============================================ */
.insights {
  padding: 6rem 0;
  background: var(--myr-bg-light);
}

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

.insights__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .insights__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.insights__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .insights__title { font-size: 3rem; }
}

.insights__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--myr-verde);
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.3s var(--ease-out);
}

@media (min-width: 1024px) {
  .insights__view-all { margin-top: 0; }
}

.insights__view-all:hover {
  gap: 0.75rem;
}

.insights__view-all svg {
  width: 16px;
  height: 16px;
}

.insights__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.insight-card {
  display: block;
  background: var(--myr-white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(10, 46, 54, 0.05);
  transition: all 0.3s var(--ease-out);
}

.insight-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 118, 128, 0.2);
}

.insight-card__body {
  padding: 1.75rem;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.insight-card__category {
  padding: 0.25rem 0.75rem;
  background: rgba(0, 118, 128, 0.1);
  color: var(--myr-verde);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
}

.insight-card__date {
  color: var(--myr-text-muted);
  font-size: 0.75rem;
}

.insight-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s var(--ease-out);
}

.insight-card:hover .insight-card__title {
  color: var(--myr-verde);
}

.insight-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--myr-verde);
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.insight-card:hover .insight-card__read-more {
  opacity: 1;
}

.insight-card__read-more svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 6rem 0;
  background: var(--myr-dark-teal);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section { padding: 8rem 0; }
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 118, 128, 0.1), transparent);
}

.cta-section__content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .cta-section__title { font-size: 3rem; }
}

.cta-section__title span {
  color: var(--myr-verde);
}

.cta-section__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.cta-section .btn-primary {
  font-size: 1.125rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 6rem 0;
  background: var(--myr-white);
}

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

.contact__grid {
  display: grid;
  gap: 4rem;
}

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

.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--myr-text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .contact__title { font-size: 3rem; }
}

.contact__description {
  color: var(--myr-text-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__info-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(0, 118, 128, 0.1);
  flex-shrink: 0;
}

.contact__info-icon svg {
  color: var(--myr-verde);
  width: 20px;
  height: 20px;
}

.contact__info-label {
  font-weight: 600;
  color: var(--myr-text-dark);
}

.contact__info-text {
  color: var(--myr-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact__social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--myr-dark-teal);
  color: var(--myr-white);
  transition: background 0.2s var(--ease-out);
}

.contact__social a:hover {
  background: var(--myr-verde);
}

.contact__social svg {
  width: 18px;
  height: 18px;
}

.contact__form {
  background: var(--myr-bg-light);
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(10, 46, 54, 0.05);
}

@media (min-width: 1024px) {
  .contact__form { padding: 2.5rem; }
}

.contact__form .form-group {
  margin-bottom: 1.25rem;
}

.contact__form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--myr-text-body);
  margin-bottom: 0.5rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--myr-white);
  border: 1px solid rgba(10, 46, 54, 0.1);
  border-radius: 2px;
  color: var(--myr-text-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s var(--ease-out);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #9ca3af;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--myr-verde);
  box-shadow: 0 0 0 1px var(--myr-verde);
}

.contact__form textarea {
  resize: none;
  min-height: 120px;
}

.contact__form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--myr-verde);
  color: var(--myr-white);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s var(--ease-out);
}

.contact__form button[type="submit"]:hover {
  background: var(--myr-verde-20);
  box-shadow: 0 0 20px rgba(0, 184, 148, 0.3);
}

.contact__form button[type="submit"]:active {
  transform: scale(0.97);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--myr-dark-teal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__inner {
  padding: 4rem 0;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

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

.site-footer__logo img {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer__description {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  max-width: 28rem;
  line-height: 1.7;
  font-size: 0.875rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.site-footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s var(--ease-out);
}

.site-footer__social a:hover {
  background: var(--myr-verde);
  color: var(--myr-white);
}

.site-footer__social svg {
  width: 16px;
  height: 16px;
}

.site-footer__nav h4 {
  color: var(--myr-white);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Cabin', sans-serif;
}

.site-footer__nav ul {
  list-style: none;
}

.site-footer__nav li {
  margin-bottom: 0.75rem;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s var(--ease-out);
}

.site-footer__nav a:hover {
  color: var(--myr-verde);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.2s var(--ease-out);
}

.site-footer__legal a:hover {
  color: var(--myr-verde);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* CountUp animation */
.count-up {
  display: inline-block;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-post-content {
  max-width: 48rem;
  margin: 0 auto;
}

.entry-content h2 {
  color: var(--myr-text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  color: var(--myr-text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.entry-content a {
  color: var(--myr-verde);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--myr-verde-20);
}

/* WordPress alignment classes */
.alignwide {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
